ALC #wait command equivalent

by Unknown

Back to Mechanic's Corner.

Unknown2006-08-16 16:24:05
Is there a command for AL Client that works like the #wait or #ALARM command? I know there's the #pause command, but it's worse than #wait. Anything else that I can use?

-Ryld
Unknown2006-08-17 00:13:38
Could someone PLEASE help me?
Xavius2006-08-17 00:41:52
I don't have it on this computer, but I believe that it's under #delay. Use the in-client help files!

EDIT: Wait, no, I remember. It has its own menu. Action/Delay
Unknown2006-08-17 03:06:35
BAH! I read it, tried it, and I can't integrate it into my Defup trigger... sad.gif
Laysus2006-08-17 22:01:04
check #help delay

it's

#delay something something something.
Unknown2006-08-18 00:16:12
Hrm... Now, why won't it work for my 'defup' alias? Someone tell me what's wrong with it, because I think it should work!

CODE
ins;
thirdeye;
mercy;
kingdom;
rb;
lev;
#delay defup1 4.5 em;
#delay defup2 4.5 wb;
#delay defup3 5 wi;
#delay defup4 4 sts;
#delay defup5 4.5 els;
#delay defup6 4.5 rss;
#delay defup7 4.5 mindbar;
#delay defup8 4.5 ss;
#delay defup9 2 deathsense


It looks fine to me, but I may be wrong... Any help?
Xavius2006-08-18 00:52:22
Delays fire simultaneously, not consecutively. You would want #delay 4.5; #delay 9; #delay 14, and so on.
Unknown2006-08-18 00:54:22
Wait... what?
Xavius2006-08-18 00:59:57
If you put...

#delay def 2
#delay diag 2
#delay deathsense 2
#delay {say Hi!} 2

...your output would be...

{two second pause}
3000h, 3000m, 3000e, 10p ex-
You are protected by 0 defenses.
3000h, 3000m, 3000e, 10p x-
You must recover equilibrium first.
3000h, 3000m, 3000e, 10p x-
You must recover equilibrium first.
3000h, 3000m, 3000e, 10p x-
You say, "Hi!"
3000h, 3000m, 3000e, 10p x-
You have recovered equilibrium.
3000h, 3000m, 3000e, 10p ex-

You know why? They all delayed 2 seconds. You need to stagger them.
Unknown2006-08-18 01:10:40
Hmmm...

OHHHHHHHHHHH! I understand now! Thanks! Heh. Brain fart!
Unknown2006-08-18 01:23:01
Hrm... why won't the transaction between my 'lev' alias and my 'em' alias work? It's got a 4.5 second delay on it, and there're no other #delay's in front of it...
Unknown2006-08-18 01:48:06
DOH! Forgot to modify and save... tongue.gif THANKS soo much!!