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