hello guys sorry for the repetive posting but now mad maxer is making me get stuck heres the code the problem is that my hero won’t move and my code is correct what is happening???
while True:
farthest = None
maxDistance = 0
enemyIndex = 0
enemies = hero.findEnemies()
enemy=hero.findNearestEnemy()
# Look at all the enemies to figure out which one is farthest away.
while enemyIndex < len(enemies):
target = enemies[enemyIndex]
enemyIndex += 1
# Is this enemy farther than the farthest we've seen so far?
distance = hero.distanceTo(target)
if distance > maxDistance:
maxDistance = distance
farthest = target
if farthest:
# Take out the farthest enemy!
# Keep attacking the enemy while its health is greater than 0.
if enemy.helath>0:
hero.attack(enemy)
pass
help! im having issues with this level my hero won’t even move
# Attack the enemy that's farthest away first.
while True:
farthest = None
maxDistance = 0
enemyIndex = 0
enemies = hero.findEnemies()
# Look at all the enemies to figure out which one is farthest away.
while enemyIndex < len(enemies):
target = enemies[enemyIndex]
enemyIndex += 1
# Is this enemy farther than the farthest we've seen so far?
distance = hero.distanceTo(target)
if distance > maxDistance:
maxDistance = distance
farthest = target
if farthest:
# Take out the farthest enemy!
# Keep attacking the enemy while its health is greater than 0.
if enemy.health > 0:
hero.attack(enemy)
pass
while True:
farthest = None
maxDistance = 0
enemyIndex = 0
enemies = hero.findEnemies()
# Look at all the enemies to figure out which one is farthest away.
while enemyIndex < len(enemies):
target = enemies[enemyIndex]
enemyIndex += 1
# Is this enemy farther than the farthest we've seen so far?
distance = hero.distanceTo(target)
if distance > maxDistance:
maxDistance = distance
farthest = target
if farthest:
# Take out the farthest enemy!
# Keep attacking the enemy while its health is greater than 0.
enemy = hero.findNearestEnemy()
while enemy.health > 0:
hero.attack(enemy)
pass
the person with the dragon attacked it and then the throwers kill me.
Put 4 spaces before these lines. And one more tip: you need pretty good armour to complete this level.
Let me know if you need any more assistance at this level, ok?
I can’t believe I was able to pass this level! I have been working on it for quite some time (maybe about a week or two) and honestly it is a relief to finally move on in the Desert.
Mod edit: Solution removeed thank you trying to help but copying and pasting code doesn’t help anyone learn.