Can anyone tell me what is wrong with my code please?
while True:
enemy = hero.findNearestEnemy()
xPos = hero.pos.x + 10
yPos = 17
if enemy:
# Adjust y up or down to get away from yaks.
if enemy.pos.y > hero.pos.y:
# If the Yak is above you, subtract 3 from yPos.
yPos = hero.pos.y - 3
pass
elif enemy.pos.y < hero.pos.y:
# If the Yak is below you, add 3 to yPos
yPos = hero.pos.y + 3
pass
hero.moveXY(xPos, yPos)