hi,
i am trying to make plugin that check if i am using skill ( Dash ) if mana more than 700 and stop Dash under 500 mana
is there way to make this in ArcheBudy here is example of my idea down
i am trying to make plugin that check if i am using skill ( Dash ) if mana more than 700 and stop Dash under 500 mana
is there way to make this in ArcheBudy here is example of my idea down
while(True) {
if(!DashSkill & Mana >700) {
StartUseDash();
} elseif(DashSkill & Mana < 500) {
StopUseDash();
}
}






