Quote:
Originally Posted by adenasmuggler
should look like this. Also the radius might be too big. I've had problems w/ the z coords before. Also the Def pos is set for 1.5m?? why? If you want to fight at random just do rangetype,rand. Also if you don't tell the script to enable walker it wont.
PosInRange(-33636,197452,-3624,300)
{
SET(L2WALKER,ENABLE)
SET(RANGETYPE,DEFPOS,-33636,197452,-3624,150000)
SET(FIGHTSTART)
DELAY(1000)
{
EXIT()
|
Yea but if you enable walker yourself, you don't have to write it in the script, and your last bracket before the exit is an opened one, should be a closed one (guess it's just a typo).
PosInRange(-33636,197452,-3624,1500)
{[Your open a bracket]
SET(RANGETYPE,DEFPOS,-33636,197452,-3624,150000)
DELAY(1000)
{[You open a bracket]
. . .
[You didn't close it]
}[You close it]
And i'm not sure the text in bold is allowed, i'm not sure you can do a sub section in a sub section. I should close the first, then open another one.