How to play Stranded in the dunes?

I keep moving to the right and somehow I can’t move any more. Anybody has a idea where i should move next? Thank you!

2 Likes

Are you a subscriber. Only subscribers can unlock certain levels. Also, please send a screenshot.

3 Likes

Yes, you must go to the circle arena place and fight the king

2 Likes

You need to move in the direction of the pillars, then move down after a while. then move right and destroy your enemies along the way, find the circle arena, with the guards kill them, stand on the red X and destroy the skeleton king and his soldiers.

3 Likes

OH NOW I understand what you mean. To defeat Stranded in the Dunes, keep on telling your hero to move right by either manually doing it with flags or dynamically with code put in a loop. Keep on defeating enemies and at a certain point, you will fight the Skeleton King

3 Likes

Hey guys,i tried all you said but where is the circle arena place? But i also want to ask what is the prize?

2 Likes

Are you a subscriber? Subscribers can access Stranded in the Dunes.

2 Likes

pls help im stuck and i dont know what is wrong with my code

If you want help you need to post your code. Please also format it so we can’t see the indents. Press the button to the left of the heart (over the big gap) and paste your code directly from CodeCombat into the gap inbetween the two ```.
Please also explain your issue.
Danny

# Go to the far right edge of the level to find new areas.
# Check the guide for more details.
enemy = hero.findNearestEnemy()
while True:  
    if enemy and enemy.type == "skeleton":
        enemy = hero.findNearestEnemy()
        hero.attack(enemy)
    else:
        hero.shield()

hello? (20 characters)

You need to go to the far right edge of the level. This can be done with: flags, else and a moveXY, etc.
At the moment you’re not going anywhere.
Danny

1 Like