02.07.2011, 01:46
Use this:
PHP код:
public OnGameModeInit()
{
for(new i = 0; i < MAX_PLAYERS; i ++) { OnPlayerConnect(i); }
return 1;
}
public OnGameModeExit()
{
for(new i = 0; i < MAX_PLAYERS; i ++) { OnPlayerDisconnect(i, 1); }
return 1;
}