• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Advanced Filters

Status
Not open for further replies.
Level 26
Joined
Aug 18, 2009
Messages
4,097
Advanced filters do not do this. I guess you are using a normal filter afore. Starting a new filter should actually abort the previous one but, apparently, it only kills the timers and does not restore the UI. The UI is probably hidden because the fade filters are mainly thought for cinematics and you shall not disturb the picture.

You can change the display yourself via

  • Custom Script: call EnableUserUI(true)
  • Custom Script: call EnableUserUI(false)
To do this for a single player do
  • Set yourPlayer = <player>
  • Custom Script: if (GetLocalPlayer() == udg_yourPlayer) then
  • Custom Script: call EnableUserUI(true)
  • Custom Script: endif
 
Status
Not open for further replies.
Top