14.03.2015, 14:31
Yes it is possible, by adding / saving / loading an additional bool variable.
new bool:Something[MAX_PLAYERS];
When he buys a vip :
Something[playerid] = true;
when he tries to access the cmd : check if(Something[playerid]==true) return sendclientmessage(playerid, -1, "already bought vip");
save and load it, done.
new bool:Something[MAX_PLAYERS];
When he buys a vip :
Something[playerid] = true;
when he tries to access the cmd : check if(Something[playerid]==true) return sendclientmessage(playerid, -1, "already bought vip");
save and load it, done.