Script delay help

11/19/2010 15:57 ChinkyTinky#1
if i want to write for example this


lstart

mov;828;813,ldn,mov;828;813,125,lup,

*6,125,-6,

*8,125,-8,

*9,125,-9,

lend;#

this means that my mouse would move to my health bar and click to target myself

then do skill 6 8 9 wich are fh / shield / great shield

but now i need to put in the delay

6 = 90 sec = 90 00 ms
8 = 300 sec = 300 000 ms
9 = 240 sec = 240 000 ms

so after skill 9 i would need to put the delay to 90000
then after 6 300000
then after 8 240000

but! what is the delay command?

any input appreciated, pls tell me if ive done something wrong aswell

im a noob who is trying to learn
11/19/2010 16:19 Vaidas B#2
Quote:
Originally Posted by ChinkyTinky View Post
if i want to write for example this


lstart
mov;828;813,ldn,mov;828;813,125,lup,

*6,125,-6,

*8,125,-8,

*9,125,-9,

lend;#

this means that my mouse would move to my health bar and click to target myself

then do skill 6 8 9 wich are fh / shield / great shield

but now i need to put in the delay

6 = 90 sec = 90 00 ms
8 = 300 sec = 300 000 ms
9 = 240 sec = 240 000 ms

so after skill 9 i would need to put the delay to 90000
then after 6 300000
then after 8 240000

but! what is the delay command?

any input appreciated, pls tell me if ive done something wrong aswell

im a noob who is trying to learn
The delay goes between or after commands, i marked the time delays in this "script" red.

So your script should look something like this:
Code:
lstart
mov;828;813,ldn,mov;828;813,[color="red"]125[/color],lup,

*6,[color="red"]90000[/color],-6,

*8,[color="red"]300000[/color],-8,

*9,[color="red"]240000[/color],-9,

lend;#
11/19/2010 17:42 ChinkyTinky#3
does any1 know how i make 2 Looped commands ? like this for example


lstart
*e,125,-e,
*6,125,-6,
90000,
lend;#
lstart
*e,125,-e,
*9,125,-9,
300000,
*e,125,-e,
*8,125,-8
240000,
lend;#

this dosnt work but does any1 know how i make it work with 2 looped thingies?