08.12.2012, 23:26
This is the way of making a specified command for VIP
pawn Код:
CMD:laseron(playerid,params[]){
#pragma unused params
if(PlayerInfo[playerid][pVIP] >= 1)
{
//codes
}
else
{
SendClientMessage(playerid,-1,"Sorry, you are not a VIP and cannot use this feature.");
}
return 1;}