Page 1 of 1

help for el2walker script...

Posted: October 13th, 2007, 8:31 am
by database
LABEL(MANA)

CharStatus(MP,<,60)
{
USEITEM(Mana Potion[ID=22300])
}

DELAY(100)

JMP(MANA)

there is my script who can found and litle edited on item ID for Enchanted Mana..

but there is problem.. when Mp fall to 50% for exemple walker use 5 6 pots in 2 3 second until mana up to 61% my question is how i can put time limit for using enchanted mana pots.. and after using one pot cheking for mana status ?

Thank you..

P.S. sorry for my bad english

Re: help for el2walker script...

Posted: November 18th, 2007, 1:31 pm
by SE
database wrote:LABEL(MANA)

CharStatus(MP,<,60)
{
USEITEM(Mana Potion[ID=22300])
}

DELAY(100)

JMP(MANA)

there is my script who can found and litle edited on item ID for Enchanted Mana..

but there is problem.. when Mp fall to 50% for exemple walker use 5 6 pots in 2 3 second until mana up to 61% my question is how i can put time limit for using enchanted mana pots.. and after using one pot cheking for mana status ?

Thank you..

P.S. sorry for my bad english
Actually pretty simple.

Code: Select all

LABEL(MANA) 
CharStatus(MP,<,60) 
{ 
USEITEM(Mana Potion[ID=22300])
DELAY(4000) //4 second delay
JMP(MANA)
} 
DELAY(500) //Half of a second delay
JMP(MANA) 
SE

Posted: January 20th, 2009, 3:04 pm
by sapeca
I'm using the above script but instead of using it only when MP is bellow 60% it's using it all the time.

Any clues?

Thanks!

Posted: October 20th, 2009, 8:34 am
by sajanas
im tryng to use theese scripts of urs but it only uses mana potion for 1 time that i have to press run script again... can i make it auto? so that it would always check for mp?

Posted: June 2nd, 2010, 1:23 am
by tsontas
nice script i will test it ty:)

Re: help for el2walker script...

Posted: December 2nd, 2012, 11:41 am
by gaddict
**nerfed**