Achaean priestess needs a timer for laying hands.

Posted by Babochka on Mon 24 Oct 2005 05:26 AM — 2 posts, 12,716 views.

USA #0
To Life Immortal

Hello I play Nabi, a troll priestess on Achaea. Priests can go about healing people by lay hands.

What i wish to do is lay hands on someone, then wait 5 or 8 seconds, then assess their health.

I have done this so far:

<alias
match="heal"
enabled="y"
echo_alias="y"
expand_variables="y"
variable="pp"
sequence="100"
>
<send>perform hands @pp</send>
</alias>

</trigger>
<trigger
enabled="y"
match="You lay your hands on *"
sequence="100"
>
<send>assess %1</send>
</trigger>
</triggers>

For Example, I want to heal Qoph. I type rr qoph to set the variable to qoph, then I type heal

I lay hands on qoph. then the trigger sees 'You lay your hands on Qoph. The alias/trigger is executing too quicker and I need a short pause between 'You lay your hands on ' and the assess %1.

Can you help me? Thanks.

Babochka the Russian Butterfly.

#1
You want the DoAfter command.

It would look something like that:

</trigger>
<trigger
enabled="y"
match="You lay your hands on *"
sequence="100"
>
<send>world.DoAfter 6, "assess %1"</send>
</trigger>
</triggers