Menu F5/F6 qui ne s’ouvre plus dans les voitures d’urgences (police/ambulance/pompier

Vous avez installé lux_vehcontrol et c’est ce script qui bloque les touches dans un véhicule d’urgence. Il suffit juste de commenter les lignes comme ceci dans le client.lua et le problème sera réglé.
--- IS EMERG VEHICLE ---
if GetVehicleClass(veh) == 18 then
local actv_manu = false
local actv_horn = false
DisableControlAction(0, 86, true) -- INPUT_VEH_HORN
DisableControlAction(0, 172, true) -- INPUT_CELLPHONE_UP
--DisableControlAction(0, 173, true) -- INPUT_CELLPHONE_DOWN
--DisableControlAction(0, 174, true) -- INPUT_CELLPHONE_LEFT
--DisableControlAction(0, 175, true) -- INPUT_CELLPHONE_RIGHT
DisableControlAction(0, 81, true) -- INPUT_VEH_NEXT_RADIO
DisableControlAction(0, 82, true) -- INPUT_VEH_PREV_RADIO
--DisableControlAction(0, 19, true) -- INPUT_CHARACTER_WHEEL
DisableControlAction(0, 85, true) -- INPUT_VEH_RADIO_WHEEL
DisableControlAction(0, 80, true) -- INPUT_VEH_CIN_CAM
SetVehRadioStation(veh, "OFF")
SetVehicleRadioEnabled(veh, false)