Ry4nD 84 Posted August 2 On 5/14/2023 at 9:24 AM, M.Mosley said: Can someone explain how to do the halo fix that Jigsor added to Github? I made a pull request, replaced the old halo with a new halo https://github.com/Jigsor/BMR_Insurgency.Altis/pull/21 Share this post Link to post Share on other sites
Flying-Coyotus 12 Posted November 2 Hello Do you know how to hide the red square of eos system ? I tried what is explained in one of the messages, by removing markers names (red squre) from: INS_definitions.sqf case (toLower (worldName) isEqualTo "takistan"): { Airfield_opt = true; all_eos_mkrs = []; all_civ_eos_mkrs = []; }; But they are still visible. Any idea ? Thanks Share this post Link to post Share on other sites
dingos8 24 Posted November 15 On 11/2/2024 at 4:22 PM, Flying-Coyotus said: Do you know how to hide the red square of eos system ? I tried what is explained in one of the messages, by removing markers names (red squre) from: INS_definitions.sqf case (toLower (worldName) isEqualTo "takistan"): { Airfield_opt = true; all_eos_mkrs = []; all_civ_eos_mkrs = []; }; I'm not certain this is the right thread for EOS questions. However, to hide markers use the setMarkerAlpha command (shown below). Check out the setMarkerAlpha biki page for further info. "markerNameHere" setMarkerAlpha 0; Removing the marker names from the arrays will only keep EOS from using those markers. Share this post Link to post Share on other sites
OFPplayer2 0 Posted November 15 On 11/3/2024 at 10:22 AM, Flying-Coyotus said: Hello Do you know how to hide the red square of eos system ? I tried what is explained in one of the messages, by removing markers names (red squre) from: INS_definitions.sqf case (toLower (worldName) isEqualTo "takistan"): { Airfield_opt = true; all_eos_mkrs = []; all_civ_eos_mkrs = []; }; But they are still visible. Any idea ? Thanks its supposed to be INS_definitions.sqf case (toLower (worldName) isEqualTo "takistan"): { Runway_opt = true; all_eos_mkrs = []; all_civ_eos_mkrs = []; }; that'll work Share this post Link to post Share on other sites