29.04.2014, 19:02
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?
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); }
}