[SOLVED]Basin Stampede help python

# Keep moving right, but adjust up and down as you go.

while True:
    enemy = hero.findNearestEnemy()
    xPos = hero.pos.x + 5
    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.
            hero.moveXY(xPos, yPos-3)
            pass
        elif enemy.pos.y < hero.pos.y:
            # If the Yak is below you, add 3 to yPos.
            hero.moveXY(xPos,yPos+3)
            pass
    hero.moveXY(xPos, yPos)
2 Likes

Never mind I already completed the level

4 Likes

This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.