20.09.2011, 21:11
How about starting your own system. If you are saving VIP in your database you can create commands like:
Just a example
pawn Код:
CMD:heal(playerid, params)
{
if(PlayerInfo[playerid][VIP] < 0) return SendClientMessage(playerid, 0xFFFFFFFF, ".:: Error: You are not allowed to use this command! ::."); // Edit this to your own vars.
SetPlayerHealth(playerid, 100);
return 1;
}

