how do i disable the HP viewer at the top of ingame walker?
also... is it possible to make an auto cp + mana + healing pot script in one?
here are the 3 seperate scripts
CP:
USEITEM(itemname[iD=3949])
LABEL(CPPotion)
CharStatus(CP,<=,70)
{
CALL(GCP)
USEITEM(CP Potion[iD=5591])//Use normal CP Potion
DELAY(1000)
}
LABEL(GCP)
CharStatus(CP,<=,50)
{
CALL(VITAMINA)
}
LABEL(VITAMINA)
USEITEM(Greater CP Potion[iD=5592])//Use Greater CP Potion
DELAY(1000)
}
CALL(CPPotion)
MANA:
LABEL(mpot)
{
USEITEM(itemname[iD=3949])
}
CharStatus(MP,<=,80)
{
USEITEM(Mana Potion[iD=1805])
}
CALL(mpot)
RETURN
USEITEM(itemname[iD=3949])
HP:
LABEL(hpot)
{
USEITEM(itemname[iD=3549])
}
CharStatus(HP,<=,80)
{
USEITEM(Greater Healing Potion[iD=1905])
}
CALL(hpot)
RETURN
USEITEM(itemname[iD=3549])