17.10.2011, 03:12
with GMX OnGameModeExit is called so do..
pawn Код:
public OnGameModeExit()
{
for(new i=0;i<MAX_PLAYERS; i++)
{
if(i != INVALID_PLAYER_ID)
{
//your code here for save the player stats(use i as playerid)
}
}
return 1;
}