Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 864 Bytes

14_crispsContest.md

File metadata and controls

39 lines (34 loc) · 864 Bytes

CaitSith2

        'impassable': function (player) {
            if (player.hasItem('greenKey')) {
                player.removeItem('theAlgorithm');
                return false;
            } else {
                return true;
            }
        'impassable': function (player) {
            if (player.hasItem('greenKey')) {
                player.removeItem('greenKey');map.placeObject(24,9,'greenKey');
                return false;
            } else {
                return true;
            }

Jhack (giacgbj)

Let's call the cells from the top to the bottom and from left to right 1,2,3,4,5,6,7,8 and the one in which the player starts C:

  • C -> 3
  • 3 -> 1
  • 1 -> C
  • C -> 2
  • 2 -> 4
  • 4 -> C
  • C -> 7 (Algorithm)
  • 7 -> 8
  • 8 -> C
  • C -> Exit
player.removeItem('yellowLock');