01.12.2012, 21:11
Create a timer.. SetTimer("SavePlayersAccounts" 5000,true); // Example
Put the timer Under OnGameModeInit..
Then Create New Function
Put the timer Under OnGameModeInit..
Then Create New Function
pawn Код:
Forward SavePlayersAccounts(playerid); //
public SavePlayersAccounts(playerid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
// Put ur User Files Here Settings Ini's Etc
}
return 1;
}