Hi all,
1 ) I’m playing the free version and would like to ask if I can go to the store to upgrade my armor, shield or sword
in order to pass " Backwood Brawl ". If yes please tell me how.
- I’ve tried running around till my " cleave " is ready and then cleave enemies but I can’t survive 1 min to pass this
level. Here’s my code :
while True:
def moveXY(position, fast = True):
enemy = hero.findNearestEnemy()
if enemy:
if enemy.type is “thrower” :
if hero.isReady(“cleave”):
hero.cleave(enemy)
else:
hero.moveXY(30, 72)
hero.moveXY(55, 80)
hero.moveXY(81, 77)
hero.moveXY(59, 62)
else:
if hero.isReady("cleave"):
hero.cleave(enemy)
else:
hero.moveXY(30, 72)
hero.moveXY(55, 80)
hero.moveXY(81, 77)
hero.moveXY(59, 62)
Appreciate your help. Thanks.