[Script] [Help] For Walker 2.13

05/11/2009 06:37 vampirexxx#1
Why this Command don't work again??? or i do something wrong....T_T

PosInRange(-33636,197452,-3624,1500)
{
SET(RANGETYPE,DEFPOS,-33636,197452,-3624,150000)
DELAY(1000)
{
. . .
}

Any New Scripts Command maybe??
if there is one new...

Please tell me...
05/11/2009 07:24 adenasmuggler#2
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()
05/11/2009 08:29 aqwzsxedc#3
Quote:
Originally Posted by adenasmuggler View Post
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.
05/11/2009 10:29 emir0n#4
wrong section - moved,warning
05/12/2009 06:20 adenasmuggler#5
Lol, yes, aside from the typo on the bracket there is nothing wrong w/ what I wrote. Caps are most definitely allowed. And having your script enable/disable walker is wise. So with the obvious typo corrected, here is what the script would look like.

POSINRANGE(-33636,197452,-3624,300)
{
SET(L2WALKER,ENABLE)
SET(RANGETYPE,DEFPOS,-33636,197452,-3624,2000)
SET(FIGHTSTART)
DELAY(1000)
}
EXIT()

-smug