14.06.2014, 14:18
Do you reset the variables on OnPlayerConnect?
The data will then be loaded from INI_ParseFile function (main loading of the player file) and put the values into your variables. The same happened with my gamemode, it was fixed by resetting.
pawn Код:
// OnPlayerConnect
PlayerInfo[playerid][pLevel] = 0;
PlayerInfo[playerid][pCash] = 0;
// all..