SA-MP Forums Archive
[HELP] BMX License - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: [HELP] BMX License (/showthread.php?tid=515308)



[HELP] BMX License - monster010 - 25.05.2014

I put, when a player enter a BMX and he don't have driving license, can driver the BMX, but if he enter on BMX remove player down without any message.

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, "* Nu sti sa conduci. Du-te la checkpoint sa-ti iei permisul");
                SetPlayerCheckpoint(playerid,1414.8483,-1702.3531,13.5395,3.0);
                RemovePlayerFromVehicle(playerid); }
            }