[SOLVED] Please Help- Hunter Valley

# Escape to the right side of the valley.

# The function has the hero move to down and right.
def moveDownRight(step):
    hero.moveXY(hero.pos.x + step, hero.pos.y - step)

# The function has the hero move to up and right.
def moveUpRight(step):
    # Complete this function:
    hero.moveXY(hero.pos.x + step, hero.pos.y + step)
    pass

# The hunter is kind and will show the route.
hunter = hero.findFriends()[0]
route = hunter.route
routeIndex = 0

while routeIndex < len(route):
    direction = route[routeIndex]
    if direction > 0:
        moveUpRight(8)
    else:
        # Use a function moveDownRight with the shift 8:
        hero.moveDownRight
        pass
    routeIndex += 1

please help… my hero always runs out of time…

Actually never mind… I solved the code by myself

2 Likes

how did you solve the code

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