01.08.2011, 14:45
You need to save the players information when the server gets shutdown. If you created a stock function to save the players information, you can call it under the following function (example below):
pawn Код:
public OnGameModeExit()
{
foreach(Player, i) // Perform a loop for all players.
{
SavePlayerInformation(i); // Save all players' information.
}
}
return 1;
}