vars.heritage 1.1 KB

123456789101112131415161718192021
  1. var(light,0) /* whether bulb is on */
  2. var(pressed,0) /* whether button has been pressed */
  3. var(drank,0) /* whether drank the water in the glass */
  4. var(lockb,1) /* whether blue lock is locked on the container */
  5. var(lockr,1) /* whether red lock is locked on the container */
  6. var(kicked,0) /* whether kicked the briefcase */
  7. var(tied,0) /* whether the rope is tied to the exit door */
  8. var(pulls,0) /* number of tries to pull the rope */
  9. var(wall,0) /* number of times the wall was visited */
  10. var(hatch,0) /* whether the hatch is closed, bent or open */
  11. var(oarb,3) /* number of places the oar is broken */
  12. var(flied,0) /* whether the user tried `fly` with a wing */
  13. var(filled,0) /* whether filled glass with tap water */
  14. var(paddled,0) /* whether paddled with oar */
  15. var(glued,0) /* number of uses of glue (max is 2) */
  16. var(ans,"") /* answer to cloud questions */
  17. var(talked,0) /* whether talked to old man */
  18. var(wrapped,0) /* whether bread is wrapped */
  19. var(wear,0) /* whether wearing glove */
  20. var(done,0) /* whether pool is ready for us! */