Posts: 737
Threads: 338
Joined: Jan 2013
Hi,
Sometimes, my server stop, i can't chat, all stops

but server work, it's like that server don't get any response, players can't connect, if they out, no change players, if i see Players: 6/10, if somebody out, no change i just want to say no response from server, but server work, why that's happin?
Posts: 737
Threads: 338
Joined: Jan 2013
This can be, when i do cikle, from cars in onplayerupdate?
new autos[ MAX_PLAYERS ];
Код:
public OnPlayerUpdate(playerid)
{
if( IsPlayerConnected( playerid ) )
{
if( GetPlayerState( playerid ) == PLAYER_STATE_DRIVER )
{
for(autos[ playerid ] = 1; autos[ playerid ] < MAX_VEHICLES; autos[ playerid ] ++ )
{
}
}
}
Posts: 1,861
Threads: 103
Joined: Sep 2011
Reputation:
0
When does the server stops responding? Is it as soon as you enter the server, or after you did a command?
To be sure, comment the code above (/* */), and check if the problem is still there.
Posts: 7,801
Threads: 187
Joined: Feb 2010
Reputation:
0
You're running a loop which has to go through 500 times, more than 1000 times per second, and you're asking why the server is hanging? Hm..
The problem is the code you've posted above. Here's a tip for the future: don't use OnPlayerUpdate UNLESS you know EXACTLY what you're doing.
Posts: 737
Threads: 338
Joined: Jan 2013
But server don't crashes ant the moment, just later.
Posts: 1,861
Threads: 103
Joined: Sep 2011
Reputation:
0
Can you link the problem to anything that you do? Is it a command, or maybe a function that get's called?
Posts: 737
Threads: 338
Joined: Jan 2013