11.12.2014, 18:24
Quote:
Thank you but i want to add other thing
if (PInfo[playerid][pCop] >= 1 allow him to use the command and if not send him a client message "You are not a police officer" if you make it i will rep you : |
pawn Code:
CMD:check(playerid,params[])
{
new targetid;
if (PInfo[playerid][pCop] < 1) return SendClientMessage(playerid, -1, "You are not a police officer");
if(sscanf(params,"u",targetid)) return SendClientMessage(playerid,-1,"Usage: /check [playerid]");
if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid, -1, "That player isn't connected!");
if(PInfo[playerid][pDriver] == 0) return SendClientMessage(playerid, -1, "That player doesn't have license.");
if(PlayerInfo[playerid][pDriver] == 1) return SendClientMessage(playerid, -1, "That player has a driving license!");
return 1;
}