# while-loops repeat until the condition is false.
ordersGiven = 0
while ordersGiven < 5:
# Move down 10 meters.
hero.pos.y -= 10
hero.moveXY(hero.pos.x, hero.pos.y)
# Order your ally to "Attack!" with hero.say
# They can only hear you if you are on the X.
hero.say("Attack!")
# Be sure to increment ordersGiven!
ordersGiven += 1
while True:
enemy = hero.findNearestEnemy()
enemy == "brawler"
# When you're done giving orders, join the attack.
if enemy:
hero.attack(enemy)
if hero.isReady("cleave"):
hero.cleave(enemy)
My hero just stands there and won’t move.
Please help.