20.04.2014, 11:18
Reset the variable PlayerInfo[playerid][pAdmin] on OnPlayerConnect:
Like that:
Then their data (or values 0, 1, or any) are loaded using INI_ParseFile(...) and your LoadUser_data forward.
Like that:
pawn Код:
//OnPlayerConnect
PlayerInfo[playerid][pAdmin] = 0;
// You may also reset other variables so they do not occur problem in future.

