15.04.2016, 18:48
(
Последний раз редактировалось BloodyRP; 26.04.2016 в 06:59.
)
cuz u have
that means if u have more than 1 in Faction OR less than 1 in Faction - u will be removed from vehicle.
try to
Код:
if(pInfo[playerid][Faction] > 1 || pInfo[playerid][Faction] < 1) return RemovePlayerFromVehicle(playerid);
try to
Код:
case PLAYER_STATE_DRIVER: { if(vehicleid >= LEOveh[0] && LEOveh[11] >= vehicleid) { if(pInfo[playerid][Faction] != 1) return RemovePlayerFromVehicle(playerid); // code here } else if(vehicleid >= EMSveh[0] && EMSveh[6] >= vehicleid) { if(pInfo[playerid][Faction] != 2) return RemovePlayerFromVehicle(playerid); //code here } }