11.12.2017, 11:51
Okay so your server is hanging at step one, which is somewhere in the below code:
It is most likely going to be at the end in your player count, you could try removing that section of code and if players stop having problems then you know for sure that it's the issue.
In your serverconfig.ini what is MaxPlayersConnected set as, is it 23?
Can you show us the code where you define MaxPlayersConnected.
Код:
isStranged[playerid] = 0;
PlayerInfo[playerid][Robbing] = 0;
PlayerInfo[playerid][OwnedRobbing] = 0;
if(IsPlayerNPC(playerid)) return 1;
g_arrQueryHandle{playerid} = random(256);
PlayerInfo[playerid][pChetne] = 0;
TotalConnect++;
if(Iter_Count(Player) > MaxPlayersConnected) {
MaxPlayersConnected = Iter_Count(Player);
getdate(MPYear,MPMonth,MPDay);
}
In your serverconfig.ini what is MaxPlayersConnected set as, is it 23?
Can you show us the code where you define MaxPlayersConnected.

