Sand Snakes - Hushbaum's afraid to move....?

Hi, this is my first Forum post…

I am having some issues with my code.
I have reviewed the other posts and it seems like I have everything correct, but Hushbaum is still just standing there. C’mon, go get those coins!

Here’s my code:

# This field is covered in firetraps.  Thankfully we've sent a scout ahead to find a path.  He left coins along the path so that if we always stick to the nearest coin, we'll avoid the traps.

# This canyon seems to interfere with your findNearest glasses!
# You'll need to find the nearest coins on your own.

while True:
    coins = hero.findItems()
    coinIndex = 0
    nearest = None
    nearestDistance = 9999
    
    # Loop through all the coins to find the nearest one.
    while coinIndex < len(coins):
        coin = coins[coinIndex]
        coinIndex += 1
        distance = hero.distanceTo(coin)
        # If this coin's distance is less than the nearestDistance
        if distance < nearestDistance:
            # Set nearest to coin
            nearest = coin
            # Set nearestDistance to distance
            nearestDistance = distance
           
    # If there's a nearest coin, move to its position. You'll need moveXY so you don't cut corners and hit a trap.
if nearest:
    hero.moveXY(nearest.pos.x, nearest.pos.y)

Any help would be appreciated.
thank you in advance code combatants

the if nearest must be in the while true loop

wow, that worked! thank you

1 Like

no problem(20characters)

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