slap before getting in a car
#1

Hello guys,i want to make when you enter in a car and you dont have a drivers license,it slaps you,
i made it,but the problem is that the player gets into the car and then it slaps him,i want him to be slapped when he presses f,without him getting to open the door and getting in the car,how do i do that?

PHP код:
 if(oldstate == PLAYER_STATE_ONFOOT && newstate == PLAYER_STATE_DRIVER// Player entered a vehicle as a driver
    
{
        new 
vehicleid GetPlayerVehicleID(playerid);
        new 
carid FindSpawnID(vehicleid);
        if(
CarInfo[carid][cID] != -&& carid != 0)
        {
            
format(stringsizeof(string), "* Acest %s este detinut de %s."vehName[CarInfo[carid][cModel]-400],CarInfo[carid][cOwner]);
            
SendClientMessage(playeridCOLOR_WHITEstring);
        }
        new 
faction PlayerData[playerid][Member] + PlayerData[playerid][Leader];
        if(!(
IsAPlane(vehicleid) || IsABoat(vehicleid) || IsABike(vehicleid)))
        {
            if(
PlayerData[playerid][CarLic] == 0)
            {
            new 
Float:xFloat:yFloat:z;
            
GetPlayerPos(playeridxyz);
            
SetPlayerPos(playeridxyz+3);
            
SendClientMessage(playeridCOLOR_WHITE"You don't have a driving license");
            } 
Reply


Messages In This Thread
slap before getting in a car - by PepsiCola23 - 17.11.2016, 21:16
Re: slap before getting in a car - by Hiddos - 17.11.2016, 21:25
Re: slap before getting in a car - by PepsiCola23 - 17.11.2016, 21:39
Re: slap before getting in a car - by Pearson - 17.11.2016, 21:49
Re: slap before getting in a car - by PepsiCola23 - 17.11.2016, 21:57
Re: slap before getting in a car - by Pearson - 17.11.2016, 22:04
Re: slap before getting in a car - by Threshold - 18.11.2016, 03:42

Forum Jump:


Users browsing this thread: 1 Guest(s)