[HELP] BMX as CAR
#1

I have a GodFather gamemode.

How i cand to do when I on BMX I have to know how to drive and lowers fuel, a bike behaves like a vehicle.
- How can I make I no longer require driving license and fuel?

pawn Код:
if(PlayerInfo[playerid][pCarLic] < 1)
            {
                if(PlayerDrunk[playerid] >= 5)
                {
                    WantedPoints[playerid] += 1;
                    SetPlayerCriminal(playerid,255, "Drunk Driving");
                }
                if(TakingLesson[playerid] == 1) { }
                else {
                SendClientMessage(playerid, COLOR_GREY, "   You don't know how to Drive yet, so you left the Car !");
                RemovePlayerFromVehicle(playerid); }
            }
Reply
#2

pawn Код:
if(PlayerInfo[playerid][pCarLic] < 1 && GetVehicleModel(GetPlayerVehicleID(playerid)) != 481)
            {
                if(PlayerDrunk[playerid] >= 5)
                {
                    WantedPoints[playerid] += 1;
                    SetPlayerCriminal(playerid,255, "Drunk Driving");
                }
                if(TakingLesson[playerid] == 1) { }
                else {
                SendClientMessage(playerid, COLOR_GREY, "   You don't know how to Drive yet, so you left the Car !");
                RemovePlayerFromVehicle(playerid); }
            }
Reply
#3

Is not work....is remove my of bmx...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)