Hello, I need help.
I can’t do this level.
Do you have any suggestions?
Here is my code :
`hero.moveXY(65,65)
while True:
enemy=hero.findNearest(hero.findEnemies())
hero.say(“Boo”)
if enemy:
while enemy.health>0:
hero.attack(enemy)
else:
hero.bash(hero.findNearest(hero.findEnemies()))
`