04.06.2009, 22:19
I made one by my self but I am not at my home, so I can't test it:
But, just looking, it's alright?
But, just looking, it's alright?
pawn Код:
public OnPlayerDisconnect(playerid, reason)
{
if(Logged[playerid] == 1)
{
new file[128];
new plName[MAX_PLAYER_NAME];
GetPlayerName(playerid, plName, sizeof(plName));
format(file, sizeof(file), "\\Users\\%s.ini", plName);
if(dini_Exists(file))
{
dini_IntSet(file, "Score", GetPlayerScore(playerid));
dini_IntSet(file, "Money", GetPlayerMoney(playerid));
dini_IntSet(file, "pJob", PlayerInfo[playerid][pJob]);
return 1;
}
}
return 1;
}