Thread: Level: None
View Single Post
  #12  
Unread 11-27-2010, 03:48 PM
EQAditu's Avatar
EQAditu EQAditu is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Permafrost
Posts: 256
Default

If you want the level label to disappear, put this as the last part of the script, with edits for the element name:
Parent.LevelTextElement.Visible=(sCond ? false : true)

If you want the indicator to display '0' instead of a blank character, change the following:
bCheck=(sCond ? ' ' : Text)
bCheck=(sCond ? '0' : Text)
Reply With Quote