Hey all,
I’m totally stuck. The threads on this level seem to be from ages ago and don’t help. I seem to be one second away from the wizard seeing the ogre so that it can step on the button to blow them all up. Anyone can help?
while True:
enemy = hero.findNearestEnemy()
if enemy:
hero.moveXY(12, 51)
if enemy.type == "munchkin":
if hero.isReady("chain-lightning"):
hero.cast("chain-lightning", enemy)
else:
hero.attack(enemy)
else:
if enemy.type == "scout":
if hero.isReady("chain-lightning"):
hero.cast("chain-lightning", enemy)
else:
if hero.isReady("lightning-bolt"):
hero.cast("lightning-bolt", enemy)
else:
hero.attack(enemy)
else:
if enemy.type == "catapult":
hero.moveXY(1, 32)
else:
if enemy.type == "ogre":
hero.moveXY(7, 35)
else:
if hero.isReady("regen"):
hero.cast("regen", hero)