Is there any way to have police lights active during the daytime. I have looked through this thread and noticed that another person has done as I and removed the piece of code that prevents the text from being shown during the daytime.
This enabled me to select 'lights on', however, the lights do not function during the daytime.
SOLVED (somewhat)
anyone curious...
You must replace the following line from fn_setupactions
life_actions = life_actions + [player addAction["Siren Lights ON",{[[vehicle player,0.22],"life_fnc_copLights",true,false] spawn life_fnc_MP; vehicle player setVariable["lights",true,true];},"",0,false,false,"",' vehicle player != player && (typeOf vehicle player) == "C_Offroad_01_F" && !isNil {vehicle player getVariable "lights"} && ((driver vehicle player) == player) && !(vehicle player getVariable "lights") && sunOrMoon < 1']];
... with ...
life_actions = life_actions + [player addAction["Siren Lights ON",{[[vehicle player,0.22],"life_fnc_copLights",true,false] spawn life_fnc_MP; vehicle player setVariable["lights",true,true];},"",0,false,false,"",' vehicle player != player && (typeOf vehicle player) == "C_Offroad_01_F" && !isNil {vehicle player getVariable "lights"} && ((driver vehicle player) == player) && !(vehicle player getVariable "lights")']];
... aka ...
remove "&& sunOrMoon < 1"
you must add to fn_coplights.sqf
_lightleft setLightDayLight true;
_lightright setLightDayLight true;
The first part adds the control to the scroll wheel during the daytime, and the last part allows the lights visible during the day.
Hope I can help someone out!
Matt