|
Accolades Newbie
Joined: 15 Jul 2002 Posts: 3 Location: Republic of Korea
|
Posted: Tue Jul 16, 2002 9:05 pm
#ALARM uses.. |
While I'm asking questions I might as well continue...
I'm having a problem using #ALARMs in zMud, when I setup an alarm with a 3 second wait, it is the ONLY 3 second wait alarm I can have, and even then if I setup another alarm for 4 seconds, only one alarm runs. I am trying to auto-update multiple windows with specific commands. When I tried incorporating all actions (gagging/capturing/command) into one #ALARM, I got strange results, like random commands started going into random windows....
Please help!
Thanks in advance
- Tim - |
|
|
|
Troubadour GURU
Joined: 14 Oct 2000 Posts: 556 Location: USA
|
Posted: Tue Jul 16, 2002 9:49 pm |
Try naming your alarms with unique ids.
#ALARM "greeting" 3 {say hello}
#ALARM "departure" 4 {say goodbye}
Troubadour |
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Wed Jul 17, 2002 2:14 am |
You could combine #ALARM with aliases to ensure commands go where you want.
#ALA *3 {command1;command2;command3}
#AL command1 {:gold:#SAY @gold}
#AL command2 {:experience:#SAY @exp}
#AL command3 {:stats:#SAY {HP:@hp Mana:@mana}
LightBulb
Senior Member |
|
|
|
|
|