Repairing someone's car not being in it (By Admin)
#5

Its a command for admin like /repair [id]
Maybe some admin commands may help you
pawn Код:
if(strcmp(cmd, "/fixveh", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAdmin] < 4)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   You are not authorized to use that command !");
                return 1;
            }
            if(IsPlayerInAnyVehicle(playerid))
            {
                SetVehicleHealth(GetPlayerVehicleID(playerid), 1000.0);
                SendClientMessage(playerid, COLOR_GREY, "   You have fixed your vehicle !");
            }
        }
        return 1;
    }
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)