26.06.2012, 18:26
Well im trying to make it if the player does not have the trucker job it will remove them from the vehicle and send them a message it dont do any of this
Please help
Thanks
pawn Код:
if(Jobs[Player[playerid][Job]][JobType] != 8 || Jobs[Player[playerid][Job2]][JobType] != 8)
{
new car = GetPlayerVehicleID(playerid);
if(car == 403 || car == 591)
{
RemovePlayerFromVehicle(vehicleid);
SendClientMessage(playerid, WHITE, "You must have the trucker job to drive this vehicle");
}
}
Thanks