Multiple triggers?

Posted by Gutlan on Fri 26 Dec 2008 08:13 PM — 2 posts, 13,811 views.

#0
Trigger:

<triggers>
<trigger
custom_colour="7"
enabled="y"
match="You mess up while forging a heavy gold chain."
name="fail_trigger"
script="Onfail"
sequence="100"
>
</trigger>
</triggers>

Vbscript:

sub Onfail (tname, line, wildcards)
world.DoAfter 5, "forge heavy gold chain carefully"
end sub

That is currently the only trigger i'm running right now. I was wondering how i can make it put chain into pack;forge heavy gold chain after 6 seconds of receiving "You are successful at forging a heavy gold chain."
#1
If I understand what you're asking, you want another trigger:

<triggers>
<trigger
enabled="y"
keep_evaluating="y"
match="You are successful at forging a heavy gold chain."
send_to="12"
sequence="100"
>
<send>world.doafter 6,"put chain into pack"
world.doafter 6.2,"forge heavy gold chain"</send>
</trigger>
</triggers>