22.08.2014, 21:07
I tried to script this one like this but errors
PHP код:
if (strcmp("/fix", cmdtext, true, 10) == 0)
{
if(Player[playerid][pAdmin] >= 1)
if(!IsPlayerInAnyVehicle) 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;
}