Not allow to enter car.
#1

How can I make if the player
if(AllowTakeLCar[playerid] == 1)
he can enter and he have 0 kick him of the car.
Reply
#2

Like I mean when he enters the car whats a drivers license car, he enters and get kicked out.
Reply
#3

if (variable == 1)
{your code}
else if(variable == 0 )
{ RemovePlayerFromVehicle(playerid);}
Reply
#4

pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    if(vehicleid == DriversTest)
    {
        if(AllowTakeLCar[playerid] == 1)
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                SCM(playerid, -1, "Let's start the Drivers test Notes:");
                SCM(playerid, -1, "1. If you hit your car its over.");
                SCM(playerid, -1, "2. You will ride true red I will give a - point.");
                SCM(playerid, -1, "GOODLUCK!!");
            }
        }
        else if(AllowTakeLCar[playerid] == 0)
        {
            SCM(playerid, -1, "Your not taking a test!");
            return RemovePlayerFromVehicle(playerid);
        }
    }
    return 1;
}
Not working.
Reply
#5

Try this:

pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if (newstate == PLAYER_STATE_DRIVER)
    {
        new vehicleid = GetPlayerVehicleID(playerid);
        if(vehicleid == DriversTest)
        {
            if(AllowTakeLCar[playerid] == 1)
            {
                if(IsPlayerInAnyVehicle(playerid))
                {
                    SCM(playerid, -1, "Let's start the Drivers test Notes:");
                    SCM(playerid, -1, "1. If you hit your car its over.");
                    SCM(playerid, -1, "2. You will ride true red I will give a - point.");
                    SCM(playerid, -1, "GOODLUCK!!");
                }
            }
            else if(AllowTakeLCar[playerid] == 0)
            {
                SCM(playerid, -1, "Your not taking a test!");
                return RemovePlayerFromVehicle(playerid);
            }
        }
    }
        return 1;
}
Reply
#6

Thx.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)