19.07.2017, 20:24
Quote:
We need to see your codes to know why they don't change
Also We can't know how your game mode work to help you to code it. (Variables and so on) Also this section isn't for requesting a script. |
PHP код:
public OnPlayerDisconnect(playerid, reason)
{
new INI:File = INI_Open(UserPath(playerid));
INI_SetTag(File,"data");
INI_WriteInt(File,"Kills",PlayerInfo[playerid][pKills]);
INI_WriteInt(File,"Deaths",PlayerInfo[playerid][pDeaths]);
INI_Close(File);
return 1;
}