superxpdude 1 Posted April 3, 2015 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
Larrow 2828 Posted April 4, 2015 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
superxpdude 1 Posted April 5, 2015 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