Hello i am trying to merge an auto cp and auto mana script but it dont work.
I need some help from someone whit some scripting experiance.
LABEL(GCP)
CharStatus(CP,<=,70)
{
CALL(VITAMINA)
}
LABEL(VITAMINA)
USEITEM(Greater CP Potion[iD=5592])//Use Greater CP Potion
DELAY(3000)
}
CALL(CPPotion)
Label(INICIO)
CharStatus(MP,<,50) //>>> VERIFY IF MANA IS LOW THAN 60% THAN USE E-MANA <<<//
{
Label(MANA)
USEITEM(itemname[iD=8633])
USEITEM(Enhanced Mana Potion[iD=10764])
DELAY(20000) //>>> E-MANA POT DELAY (20000 = 20 SECONDS) <<<//
CharStatus(MP,<,90) //>>> IF CHAR MP LOW THAN 90% USE E-MANA AGAIN <<<//
{
Call(MANA)
}
}
DELAY(5000)
Call(INICIO)
RETURN
can someone help me to fix it? (its made for dragon network)
thanks :)