22.08.2014, 21:14
pawn Код:
if (strcmp("/fix", cmdtext, true, 4) == 0)
{
if(Player[playerid][pAdmin] >= 1)
{
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_YELLOW,"You are not driving any car");
RepairVehicle(GetPlayerVehicleID);
}
else
{
SendClientMessage(playerid,COLOR_RED,"You are not allowed to use this command");
}
return 1;
}