Hazmeech Novice
Joined: 27 Mar 2005 Posts: 31
|
Posted: Sun Apr 24, 2005 9:33 pm
Scrip to enter guildhall |
Copy all the script and enter it directly into your command line in zmud and hit enter.
simply type:
touch pool
to make it work
#CLASS {PoolTrig}
#ALIAS touch {#IF ("%1" = pool) {touchpool = 1
poolclear = 0
#T+ pooltrig
ent
group} {~touch %1}}
#VAR poolclear {1} {0}
#VAR touchpool {1} {0}
#TRIGGER "pooltrig" {The following beings are in your entourage:$The following adventurers are in your entourage:$%dh, %dm} {#T+ pooltrig2} "" {disable}
#TRIGGER "pooltrig2" {You are following no one.$%dh, %dm} {#IF (@touchpool) {poolclear = 1}
#T- pooltrig2} "" {prompt|disable}
#TRIGGER "pooltrig3" {The following beings are in your entourage:} {#IF (@touchpool) {#ALARM +1 {#IF (@poolclear = 0) {#ECHO -
#ECHO Someone/Something is following you.} {~touch pool}
#T- pooltrig}}}
#TRIGGER {^Floating.$} {#IF (@touchpool) {'paladins
touchpool = 0}}
#TRIGGER {^You have no pool.$} {#IF (@touchpool) {touchpool = 0}}
#CLASS 0 |
|