Vehicle for only a specific rank
#2

do u have a rank variable otherwise

pawn Код:
new tank; // at the top

public GameModeInit()
{
 tank = CreateVehicle(info in here);
 return 1;
}

public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if(newstate == 2)
    {
        new CarCheck = GetPlayerVehicleID(playerid);
        if(CarCheck == tank )
        {
            if(GetPlayerScore(playerid) < 5000)
            {
                RemovePlayerFromVehicle(playerid);
                SendClientMessage(playerid, -1 ,"You Don't have the keys for this car!");
                return 1;
            }
        }
        return 1;
    }
    return 1;
}
Reply


Messages In This Thread
Vehicle for only a specific rank - by _Mohit_ - 26.01.2013, 04:47
Re: Vehicle for only a specific rank - by Glad2BeHere - 26.01.2013, 05:05
Re: Vehicle for only a specific rank - by _Mohit_ - 26.01.2013, 05:10

Forum Jump:


Users browsing this thread: 2 Guest(s)