PDA

View Full Version : haste script



Carl Spackler
04-14-2007, 03:03 PM
I need help writing a script.

I want to be able to continuously haste any character. So I want what i type in to look like .haste (name) and then have it loop to cast haste upon that player again when his haste drops... how would i write something like that?

Bobmuhthol
04-14-2007, 03:08 PM
#Haste

Start:
put incant 506 %1
waitfor <haste drop message>
goto Start

Carl Spackler
04-14-2007, 03:31 PM
Thanks.

Izzy
04-14-2007, 04:40 PM
Basically the same as Bob's, but this won't be affected by people besides the target losing haste.

Start:
put prep 506
put cast %1
waitfor %1 returns to normal speed
goto start