28.03.2017, 05:31
When the passengers get into the taxi (instead of the driver), the command refused to enter the taxi and it says "You are not a Taxi Driver" it means that you have to become the taxi driver first to get into the vehicle. How to make it possible for a passengers to get into the taxi without joining the Taxi Driver job first, and forbidden for them to enter the 1st seat driver.
my public OnPlayerEnterVehicle
Thanks before.
my public OnPlayerEnterVehicle
PHP код:
if(PlayerInfo[playerid][pJobTaxi] == 1)
{
}
else {
if(modelid == 420 || modelid == 438)
{
RemovePlayerFromVehicle(playerid);
ClearAnimations(playerid);
return SendClientMessage(playerid, 0xFF0000FF, "You are not a Taxi Driver");
}
else if(modelid == 420 || modelid == 438){
PutPlayerInVehicle(playerid, vehicleid, 1);
}
}