Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. title Space Game
  2. author Isaac D
  3. homepage www.puzzlescript.net
  4. debug
  5. run_rules_on_level_start
  6. youtube Uj8MsbgpjaQ
  7. realtime_interval 0.7
  8.  
  9. ========
  10. OBJECTS
  11. ========
  12.  
  13. Platform
  14. #C4AEAD
  15. 00000
  16. 00000
  17. 00000
  18. 00000
  19. 00000
  20.  
  21. Player
  22. Black Orange White Blue
  23. .000.
  24. .111.
  25. 22222
  26. .333.
  27. .3.3.
  28.  
  29. RedCrate
  30. Red Yellow
  31. 00000
  32. 0...0
  33. 0...0
  34. 0...0
  35. 00000
  36.  
  37. BlueCrate
  38. Blue Yellow
  39. 00000
  40. 0...0
  41. 0...0
  42. 0...0
  43. 00000
  44.  
  45. GhostCrate
  46. Transparent
  47.  
  48. CatL
  49. #C4AEAD White
  50. .1...
  51. .....
  52. 000..
  53. .....
  54. .....
  55.  
  56. CatU
  57. #C4AEAD White
  58. ..0..
  59. ..0..
  60. ..0..
  61. .....
  62. .1...
  63.  
  64. CatD
  65. #C4AEAD White
  66. .....
  67. .....
  68. ..0..
  69. ..0.1
  70. ..0..
  71.  
  72. CatR
  73. #C4AEAD White
  74. ....1
  75. .....
  76. ..000
  77. .....
  78. .....
  79.  
  80. CatWalk
  81. Transparent
  82.  
  83. Holes
  84. Black
  85.  
  86. Hole1
  87. Black White
  88. 01000
  89. 00001
  90. 00000
  91. 10000
  92. 00000
  93.  
  94. Hole2
  95. Black White
  96. 00000
  97. 00001
  98. 00000
  99. 00010
  100. 10000
  101.  
  102. HunterL
  103. Red
  104. .....
  105. .0...
  106. 0000.
  107. .0...
  108. .....
  109.  
  110. HunterR
  111. Red
  112. .....
  113. ...0.
  114. .0000
  115. ...0.
  116. .....
  117.  
  118.  
  119.  
  120. =======
  121. LEGEND
  122. =======
  123.  
  124. Hole = Hole1 or Hole2
  125. Background = Platform
  126. backgroundTrue = Platform or CatWalk
  127. P = Player
  128. R = RedCrate and Platform
  129. B = BlueCrate and Platform
  130. . = Platform
  131. Q = Player and Catwalk
  132. Crate = BlueCrate or RedCrate
  133. Wall= Hole or Holes
  134. #= Holes
  135. +=CatWalk
  136. H = HunterR
  137. F = HunterR and Platform
  138. Hunter = HunterR or HunterL
  139. Enim= Hunter
  140. Character= Hunter or Player
  141.  
  142. =======
  143. SOUNDS
  144. =======
  145.  
  146. Crate MOVE 36772507
  147.  
  148. ================
  149. COLLISIONLAYERS
  150. ================
  151.  
  152. Background
  153. Platform, Catwalk
  154. CatR
  155. CatL
  156. CatU
  157. CatD
  158. GhostCrate
  159. Player, RedCrate, BlueCrate, Holes, Hole, HunterR, HunterL
  160.  
  161. ======
  162. RULES
  163. ======
  164.  
  165. [ HunterL ] [ Stationary Player ] -> [ Left HunterL ] [ Stationary Player ]
  166. [ > HunterL | Wall ] [ Stationary Player ] -> [ < HunterR | Wall ] [ Stationary Player ]
  167. [ HunterR ] [ Stationary Player ] -> [ Right HunterR ] [ Stationary Player ]
  168. [ > HunterR | Wall ] [ Stationary Player ] -> [ < HunterL | Wall ] [ Stationary Player ]
  169. [ Hunter | ... | Player ] [ Stationary Player ] -> [ > Hunter | ... | Player ] [ Stationary Player ]
  170. [ > Hunter | Player ] [ Stationary Player ] -> restart
  171. [ > Hunter | Crate ] -> [ > Hunter | > Crate ]
  172.  
  173.  
  174. [ > Character | Crate ] -> [ > Character | > Crate ]
  175. [ Action Player | BlueCrate ] -> [ Action Player |GhostCrate ]
  176. [ Action Player | RedCrate ] -> [ Action Player | ]
  177. [ > Crate | CatWalk ] -> [ Crate | CatWalk ]
  178. Up [ Catwalk | BackgroundTrue no Wall] -> [CatU Catwalk |backgroundTrue no Wall]
  179. Down [ Catwalk | BackgroundTrue no Wall] -> [CatD Catwalk |backgroundTrue no Wall]
  180. Left[ Catwalk | BackgroundTrue no Wall] -> [CatL Catwalk |backgroundTrue no Wall]
  181. Right [ Catwalk | BackgroundTrue no Wall] -> [CatR Catwalk |backgroundTrue no Wall]
  182. [ Holes ] -> [ Random Hole ]
  183.  
  184. ==============
  185. WINCONDITIONS
  186. ==============
  187.  
  188. No GhostCrate
  189. No RedCrate
  190.  
  191. =======
  192. LEVELS
  193. =======
  194.  
  195.  
  196.  
  197. #####
  198. #.P+#
  199. #.B+#
  200. #R++#
  201. #####
  202.  
  203. #####
  204. #rhb#
  205. #...#
  206. #.p.#
  207. #####
  208.  
  209. ............#
  210. ............#
  211. ...b........#
  212. ...........r#
  213. .bhb........#
  214. p...........#
  215. ............#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement