|
jess Newbie
Joined: 17 Sep 2002 Posts: 1
|
Posted: Tue Sep 17, 2002 11:21 pm
I'm kinda new to Zmud..... |
I need some help on how to fix this alias, I have more than one command, and i want to make the time between each command .75 seconds, how do i do that?
|
|
|
|
Raksasas Novice
Joined: 09 Aug 2001 Posts: 39 Location: USA
|
Posted: Wed Sep 18, 2002 12:23 am |
hrm... looks to me that you will want to use the #wait command....
the first command
#wa 750
the second command
the .75 of a second is 750
if you where wanting 1 second it would be 1000
V6.16 |
|
|
|
doomfyre Apprentice
Joined: 03 Jan 2002 Posts: 152 Location: USA
|
Posted: Wed Sep 18, 2002 2:34 am |
#WAIT isn't a very popular solution here. I nearly always see an alarm as a recommendation in this situation. Something like this mabey?
#alias whatever {do something; #alarm +15; do something else} |
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Wed Sep 18, 2002 3:00 am |
#ALARM uses seconds, so #ALARM +15 is 15 seconds. The + marks it as a one-time alarm which will delete itself when it goes off. The closest you can come to .75 second delay is 1 second, that would be #ALARM +1 {commands}. If there are several, I'd recommend setting all the alarms with the alias rather than nesting them.
#AL fixalias {#ALA +1 {first thing to do};#ALA +2 {second thing };#ALA +3 {third thing to do}}
LightBulb
Senior Member |
|
|
|
doomfyre Apprentice
Joined: 03 Jan 2002 Posts: 152 Location: USA
|
Posted: Wed Sep 18, 2002 3:35 am |
Hmmm, where did i get 15 seconds? *boggle*. anyhow, what Lightbulb said
|
|
|
|
|
|