FIRE
Syntax: #FIRE text
Sends the text to the trigger system as if it were received from the server. Allows you to fire a trigger without sending any text to the screen. The text is not displayed, so executing triggers that act on this text (like #color, #sub, #cw, etc) will effect the current text on the screen rather than the text processed by the trigger.
FIRE example
#TRIGGER {Hp: (%d)} {#VAR hitpoints %1}
#FIRE "Hp: 100"
This would cause the trigger to fire and would cause @hitpoints to be set to the value of 100. |