Advertisement
howtophil

Time Zombie Inform 7 Code

Mar 19th, 2022
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. "Escape Time" by "Phillip J Rhoades"
  2.  
  3. The current instruction set is a list of stored actions that varies.
  4.  
  5. Cube is a room. The player is here.
  6.  
  7. Bedroom is north of Cube.
  8.  
  9. Box is in cube. "A little metal box."
  10.  
  11. zombie is a person.
  12. zombie is nowhere.
  13.  
  14. Report zombie examining zombie:
  15. say "Watching your past self look at itself is giving you a headache." instead.
  16.  
  17. After doing something when zombie is nowhere:
  18. now the actor is zombie;
  19. add the current action to the current instruction set;
  20. now the actor is the player;
  21. if the number of entries in the current instruction set is 10:
  22. now zombie is in the cube;
  23. say "A time zombie is spawned";
  24. continue the action.
  25.  
  26. Instead of attacking the box:
  27. say "It is smashed into little dusty pieces.";
  28. now the box is nowhere.
  29.  
  30. Every turn when zombie is somewhere:
  31. if the number of entries in the current instruction set is 0:
  32. say "The time zombie vanishes";
  33. now zombie is nowhere;
  34. otherwise:
  35. let the next task be entry 1 of the current instruction set;
  36. try the next task;
  37. remove entry 1 from the current instruction set;
  38. if rule failed:
  39. say "[next task] PARADOX INCREASES".
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement