Convert PlayerInfo System to PVars with #define
#3

No, it's about converting
pawn Код:
PlayerInfo[playerid][pAdmin] = 1;
PlayerInfo[playerid][pCash]--;
if(PlayerInfo[playerid][pLaptop] == 7)
and so on with ONE universal #define code, so that after pre-compiling the code is like this:
pawn Код:
SetPVarInt(playerid, "pAdmin", 1);
SetPVarInt(playerid, "pCash", GetPVarInt(playerid, "pCash")-1);
if(GetPVarInt(playerid, "pLaptop") == 7)
Do you know what I mean?
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)