Treasure Hunt

Common Misunderstandings

These statements are the way the game should work.

Hints

If your sprite gets stuck trying once it hits a wall, make it so you can actually move in one direction even while you are touching the wall. Example:


when [d v] key pressed
  forever 
    if < touching color (black) > then
      point in direction (-90)
      move (5) steps
    else 
      point in direction (90)
      move (5) steps
    end