Quote:
|
Originally Posted by excaliber7388
How do i get it to come back after it's closed? I've been using onWeaponfired() to bring it up, but it only works once
|
I can't remember if the window just hides when you close it, or whether it's actually destroyed. If it's destroyed, then you will need to redefine the window in order to return it. Alternatively, you could use something to toggle the window's visibility:
PHP Code:
windowcontrolname.visibile = !(windowcontrolname.visible);