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!
Are you a subscriber. Only subscribers can unlock certain levels. Also, please send a screenshot.
Yes, you must go to the circle arena place and fight the king
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.
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
Hey guys,i tried all you said but where is the circle arena place? But i also want to ask what is the prize?
Are you a subscriber? Subscribers can access Stranded in the Dunes.
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