I want to put multiple information from different triggers on the status bar, is this possible?
Status Bar
Posted by Madrox on Sat 08 Oct 2011 02:21 PM — 4 posts, 18,183 views.
Yes, but only if they cooperate. You can get the current information from the status bar and then manipulate it with newly gathered information and re-display. This requires some degree of friendly behavior between your triggers.
What you could do is have each trigger save its information into a global variable. Then they all call a shared script function (eg. in the script file) which redraws the status line, using all the known variables (eg. HP, mana, current target etc.).
Ah, didn't even consider that! Thank you.