Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
Sign in to follow this  
superxpdude

Disable the Multiplayer score HUD

Recommended Posts

I was wondering if anyone knew a way to disable the multiplayer score HUD element that appears above the sector status and such. See Image. I haven't been able to figure out how to do it, or if it's even possible.

Share this post


Link to post
Share on other sites

You can disable the whole thing (includes sectors) by...

_display = uiNamespace getVariable [ "RscMissionStatus_display", displayNull ];
if ( !isNull _display ) then {
_status = _display displayCtrl 15283;
_status ctrlShow false;	
};

Not sure if that what you want though?

Share this post


Link to post
Share on other sites
You can disable the whole thing (includes sectors) by...

_display = uiNamespace getVariable [ "RscMissionStatus_display", displayNull ];
if ( !isNull _display ) then {
_status = _display displayCtrl 15283;
_status ctrlShow false;	
};

Not sure if that what you want though?

That's perfect. Thanks

Share this post


Link to post
Share on other sites
Sign in to follow this  

×