Vehicle for only a specific rank
#1

my gm has a rank system based on score.And i want the tank to be only driveable by rank 9(5000 score).Can anyone help me?
Reply
#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
#3

it worked bro..Tnx for the help..+reped
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)