13.06.2010, 09:34
Get rid of this new Exp[MAX_PLAYERS]; and use PVars
pawn Код:
//GetPlayerExp
stock GetPlayerExp(playerid)
{
return GetPVarInt(playerid, "EXP");
}
//SetPlayerExp
stock SetPlayerExp(playerid,cash)
{
SetPVarInt(playerid, "EXP", cash);
return GetPVarInt(playerid, "EXP");
}

