Time trigger, I really don't know howto make it

Posted by Reizar on Wed 15 Aug 2007 11:24 AM — 4 posts, 23,294 views.

#0
So I would need help with setting time trigger for my MUSHclient.

The deal would be to set trigger that pops after 4min and the clock would start from message "Backstabbed."

So if anyone can advice me howto make that kind of trigger I would be happy man :)

I hope this includes every information to make that kind of trigger :o
USA #1
Check out World.DoAfterNote()

You'd just have the trigger run a script to the effect:
World.DoAfterNote(240, "4 minutes have passed.")

Now if you want to send a command after 4 minutes you'd use:
World.DoAfter(240, "command")

There's also DoAfterSpecial(), you'd have to check out the help files on that one.

#2
hmm, just one more question, where I can find this World.DoAfterNote? from my MUSHclient or from files out from that program?
USA #3
http://www.gammon.com.au/scripts/function.php?name=DoAfterNote

Up at the top of the MUSHclient forums page, there is a link for "script functions" and then another one on that page for "Alphabetic list of all script methods and properties." That link will take you to this list: http://www.gammon.com.au/scripts/function.php Which is probably the most important documentation for MUSHclient scripting.