05.04.2011, 19:35
pawn Код:
new VIP[MAX_PLAYERS];
VIP[playerid] = 0; //Non vip
VIP[playerid] = 1; //Bronze
VIP[playerid] = 2; //Silver
VIP[playerid] = 3; //Gold
VIP[playerid] = 4; //Platinum
When you check if someone is a VIP use this
pawn Код:
if (VIP[playerid] != required_level) return SendClientMessage(playerid, COLOR,"You are not a VIP- Member!");

