Jump to content

Recommended Posts

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
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
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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×