Can someone tell me how can i deleveling my charachter uses l2walker? I try option wchih are to deleveing but for me it dosent work. My charakter dont attack guard but go somewhere attitude city.
This script is made by Anuin from the Gamehaqs board. NOT my script.Quote:
////[ Check Position in Town ]////
Label(Start)
CharStatus(LV,<=,19)//<----- [ Delevel Limit ]
{
Exit()
}
POSINRANGE(-14177,122805,-3112,1000)//[ North Check ]
{
Label(GludioNorth)
Call(Continue 1)
}
POSINRANGE(-14285,124777,-3120,1000)//[ South Check ]
{
Call(GludioSouth)
MoveTo(-14215,123780,-3112)
Call(Continue 1)
}
PosInRange(-16300,124283,-3112,1000)//[ West Check ]
{
MoveTo(-15746,124178,-3112)
MoveTo(-16775,124177,-3112)
PosInRange(-16775,124177,-3112,100)
{
Label(Alive)
Delay(1000)
CharStatus(HP,!=,0)
{
UseSkill(Drain Health,NPC,Praga)//<----- [ Change Spell Here ]
Call(Alive)
}
}
Delay(1000)
CharStatus(HP,==,0)
{
GoHome
Delay(7000)
Call(Start)
Return
}
}
PosInRange(-13115,123765,-3112,1000)//[ East Check ]
{
MoveTo(-14215,123780,-3112)
MoveTo(-13322,123726,-3112)
MoveTo(-11742,123626,-3072)
PosInRange(-11742,123626,-3072,100)
{
Label(Alive)
Delay(1000)
CharStatus(HP,!=,0)
{
UseSkill(Drain Health,NPC,Babenko)//<----- [ Change Spell Here ]
Call(Alive)
}
}
Delay(1000)
CharStatus(HP,==,0)
{
GoHome
Delay(7000)
Call(Start)
Return
}
}
Call(Start)
////[ Continues to Guard ]////
Label(Continue 1)
MoveTo(-14545,121190,-2984)
MoveTo(-14555,120900,-2984)
}
PosInRange(-14555,120900,-2984,100)
{
Label(Alive)
Delay(1000)
CharStatus(HP,!=,0)
{
UseSkill(Drain Health,NPC,Bathis)//<----- [ Change Spell Here ]
Call(Alive)
}
}
Delay(1000)
CharStatus(HP,==,0)
{
GoHome
Delay(7000)
Call(Start)
Return
}
Call(Start)
Return