L2 Walker BSOE

07/09/2009 08:01 l2walker6#1
hello,

i want to bot with l2 walker, but i need something.

can i make any setting, that my char make bose, when anyone attack his cp? i only see option, to make bsoe if hp goes 30% down, but my buffer heal me, that sucks.

anyoe know, if i can do this?
07/09/2009 08:56 emir0n#2
script

Label(start)
CharStatus(CP,<,90)
USEITEM(Blessed Scroll of Escape[ID=1538])
DELAY(5000)
JMP(start)


wrong section - moved,warning
07/09/2009 23:25 l2walker6#3
i take this script and i run it into walker, but it dont work.
07/10/2009 00:32 emir0n#4
i just took the bsoe id and name from the l2jdb,didnt do it ingame ... check the name/id in l2w and try to update the script
07/10/2009 00:41 emir0n#5
or try this one ... made it out game so check the item name/id ingame with l2w

LABEL(SOE)
{
CharStatus(CP,<=,90)
{
JMP(BSOE)
}
CALL(SOE)
LABEL(BSOE)
USEITEM(Blessed Scroll of Escape[ID=1538])
DELAY(3000)
CALL(SOE)