Mana Pots

04/30/2008 02:30 jesse21#1
Hi, I need a way to figure out a way to get L2Walker to use mana pots. Any ideas? I want it to use it when im under a certain %tage.
04/30/2008 21:30 jesse21#2
Bump ^^
04/30/2008 23:01 Elaia#3
Make a script with this

LABEL(Ciclo)
{
CharStatus(MP,<=,80)
{
JMP(UsaManaPot)
}
USEITEM(Blessed)
}
CALL(Ciclo)
LABEL(UsaManaPot)
USEITEM(Mana Potion[ID=728])
USEITEM(Blessed Spiritshot: S Grade[ID=3952])
CALL(Ciclo)
05/22/2008 22:24 greenfire#4
//manapots = 200mp directly
Label(mana)
CharStatus(MP,<,75)
{
Useitem(Mana Potion[ID=728])
}
Delay(5000)
Call(mana)




//manapots = normal
Label(mana)
CharStatus(MP,<,75)
{
Useitem(Mana Potion[ID=728])
}
Delay(30000)
Call(mana)
05/23/2008 07:34 uniqueness#5
@Elaia and greenfire

can you help me with this :
[Only registered and activated users can see links. Click Here To Register...]