01.07.2017, 02:05
Well.
Here.
Write:
Instead of:
That's in OnPlayerDisconnect.
And here.
Instead of:
SetPlayerScore(playerid, PlayerInfo[playerid][pKill]);
TOTALLY WRONG!
It will set the player score only the kills that he made.
I suggest you to send me your source for a good solution for this problem.
Loose Indentation is even not a error, You can ignore it.
Here.
Write:
PHP код:
INI_WriteInt(File,"Score",GetPlayerScore(playerid));
PHP код:
INI_WriteInt(File,"Score",PlayerInfo[playerid][pScore]);
And here.
PHP код:
INI_WriteInt(File,"Score",GetPlayerScore(playerid));
PHP код:
INI_WriteInt(File,"Score",PlayerInfo[playerid][pScore]);
TOTALLY WRONG!
It will set the player score only the kills that he made.
I suggest you to send me your source for a good solution for this problem.
Loose Indentation is even not a error, You can ignore it.