I was stuck here / and it did not work
defeated = 0
while True:
enemy = hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
if enemy.health <= 0:
defeated += 1
if hero.time > 15:
break
Tell Naria how many enemies you defeated.
hero.moveXY(59, 33)
hero.say(defeated)
Collect coins until the clock reaches 30 seconds.
while True:
coin=hero.findNearestItem()
if coin:
hero.moveXY(coin.pos.x,coin.pos.y)
coinsCollected = hero.gold ()
if hero.time >30:
break
hero.moveXY(59,33)
hero.say(“Hi Naria, I collected " + gold + " gold!”)
Fight enemies until the clock reaches 45 seconds.
Remember to reset the count of defeated enemies!
defeated=0
while True:
enemy=hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
if health <=0:
defeated +=1
if time >45:
break
hero.moveXY(59,33)
hero.say(defeated)