|
simonmarriott Newbie
Joined: 19 Oct 2003 Posts: 3
|
Posted: Mon Oct 20, 2003 7:23 am
Wait/Alarm message |
This is quite hard for me to work out how to code, but maybe easier for some of the good coders heh, here's what im trying to do:
When I see the message -> You deftly maneuver into position....
I would like ZMud to wait 20 seconds, then show a message alerting
me that I can backstab again (A cold shiver runs down your spine.)
I've tried using #WA to time and #ECHO to announce, but #WA, if used in conjunction with another #WA timer, ends up distrupting each other and becomes one big mess.
Thanks :) |
|
|
|
Arcane_of_Discworld Wanderer
Joined: 29 Jan 2002 Posts: 99 Location: UK
|
Posted: Mon Oct 20, 2003 7:39 am |
Instead of using #wa try reading the help file and using #ALARM
|
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Mon Oct 20, 2003 2:48 pm |
You can do this with a one-time alarm or a multi-state trigger.
#TR {You deftly maneuver into position} {#ALA +20 {#ECHO A cold shiver runs down your spine.}}
or
#TR {You deftly maneuver into position} {#NOOP}
#COND {} {#ECHO A cold shiver runs down your spine.} {Wait|Param=20000}
As you've already discovered, #WAIT shouldn't be used with triggers. |
|
|
|
|
|