Is there a way in either an alias or a speedwalk to have the client delay some defined ammount of time prior to sending the next command? I could have sworn I saw something about this but I can't find it now :)
Thanks!
--
Rob
Yup. Just go to Input > Commands and there should be a delay box for how long each command is sent between speedwalk actions.
That won't help, I need to insert 1 pause, like once. =) I wanna insert a pause, not slow down my whole alias =)
Ah, OK. There isn't a simple "pause" command in a script, because such a thing would pause the entire client, which is probably not what you want.
What I would do is make the alias call a script. The script would send whatever commands you want before the pause (using world.send) and then create a timer (world.addtimer). The timer would be a "one-shot" timer (firing once only), which would then send whatever additional commands you wanted when it fired.
The timer can fire after any time you like (eg. 1 second, 1 hour), and then send additional commands to the world, or call another script, or both.
For examples of making such a timer do a search for "addtimer" in the forum search.
Thanks Nick =) I appreciate the help.
Hehe, I'm slowly converting a portion of the population of the mud I play on over to MUSHclient. impressive, considering the admin of the mud write one of the competing clients. *grin*
-Rob