PRIORITY
Syntax: #PRI {commands}
Execute a list of commands at high priority. Data from the MUD is not processed during this execution. This is useful for high-priority loops that need to be finished before the next line from the MUD is processed. Be sure not to execute any commands that are too time consuming, such as a #WAIT command since all MUD data is paused during the processing.
PRIORITY example
#PRI {#LOOP 10 {#SHOW %i}} 10 numbers are displayed before any more lines from the MUD are processed.