i play this mud that has a command buffer on body location commands, and im trying to have a trigger do a spell, but i cant get it to wait long enough for the item i drop to disappear before targeting the one in my inventory. i tried world.doafter, and DoAfter. but they both say unrecognized command. this is the first trigger thats not working. its a chain of 3, if i do stuff manually i can get the other 2 to fire off with no problem.
[EDIT] Put trigger into code tags.
<triggers>
<trigger
enabled="y"
ignore_case="y"
match="You drop *(a|an|the) *(bronze|iron|steel) shortsword in the void."
regexp="y"
sequence="100"
>
<send>fab short
tar short
rw
rw
rp
</send>
</trigger>
</triggers>
[EDIT] Put trigger into code tags.