Hunter valley please help

# 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:
        def moveDownRight(step):
            hero.move.XY(hero.pos.x + step, hero.pos.y - step)
        pass
    routeIndex += 1
1 Like

Your code’s right except for this:

You must use the function like you did here

instead of redefining it.

try changing it but nothing changed