home *** CD-ROM | disk | FTP | other *** search
/ CD PowerPlay 6 / TheCompleteAdventureCollection1995 / CDPP6.ISO / share / nomad / nomad.bas < prev    next >
Encoding:
BASIC Source File  |  1994-03-26  |  37.9 KB  |  862 lines

  1. 'this is not registered...        ofe o epa
  2. 'but it is playable...            bf  n fpu
  3. 'to a certain extent              oe  u olc
  4. 'to register this game            dr  t ree
  5. 'a. send:                         ye    e
  6. '                                  d            PRESS F5 to play this lame game
  7. '
  8. '       1. a self addressed stamped envelope
  9. '       2. two disks: (one blank(for you), and another one, blank or w/ cool philes(for me)) 3.5" HD are preffered, but anything else would be dandy.
  10. '       3. one dollar
  11. '       4. anything else I have failed to mention (winning lottery tickets,etc.)
  12. 'b. to:
  13. '   PHLEGM GAMES
  14. '   P.O. Box 1575
  15. '   Hailey, ID 83333
  16. '
  17. 'Crippled Games Suck- But hey, if you have any brains, you'll get a registered copy, then sell it to your friends for more. Of course, they won't be your friends after that, because people don't like people that sell them stupid text games for an unreasonable profit.
  18. '!@#$%^&*())_+| PRESS f5 if you wish to play NOMAD |+_)(*&^%$#@!~   `MORE'|
  19. '               or press that Reset button if you wish not to.           \|/
  20. ' The Best Game Ever Devised          Please feel free to distribute this game. It would also be OK with me if you add on parts to it, using your own programming powers. But if you do make this game cool, send me a copy. That way I'll have a viable product, with which to make mass amounts of money. You'll probably sue me for using your game, you know, like after I'm a millionare and all, but that's okay!!
  21. ' iN tHE eNTIRE uNIVERSE >..that is all carry on...f5f5f5f5f5
  22.                    'NO, WAIT, THERE'S MORE====|/
  23. DECLARE SUB MAIN ()
  24. CALL MAIN
  25.  
  26. ' This here game has many neat little things
  27. ' Just try different things
  28. ' The object is to get the high score
  29. ' All you really need to do that
  30. ' Is get into the program
  31. ' And change some things
  32. ' Around
  33.  
  34. ' i rEALIZE tHAT vERY fEW oF yOU wILL ACTUALLY gO THROUGH tHE tEDIOUS pROCESS oF rEGISTERING tHIS gAME, sO i aSK yOU TO fINISH iT AND SEND ME A COPY OF our nomad... thank you and have FuN
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.                              ' =========
  51.                              ' \  0 0  /
  52.                              '    \ /
  53.  
  54.  
  55.  
  56.  
  57. ' i'M a lOSER bABY, sO wHY dON'T yOU kILL mE???
  58.  
  59. SUB MAIN
  60. CLS
  61. LUD$ = "O3GF#GF#G"
  62. LUD2$ = "DFE-C2"
  63. LUD3$ = "FEFEFDFE-C2"
  64. char$ = "o4 C8 D8 E8 G E8 G"
  65. horn$ = "O2 D4 D4"
  66. TUBA$ = "o3 c3 o2 c3 o1 c2"
  67. COLOR 1
  68. PRINT
  69. PRINT "                                    NOMAD"
  70. PRINT "              'THE BEST GAME EVER DEVISED IN THE ENTIRE UNIVERSE'"
  71. PLAY LUD$
  72. PRINT "<>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>  <>"
  73. OPEN "NOMAD.DAT" FOR INPUT AS #1
  74. INPUT #1, REC1$, REC2, GRAF$
  75. HS = REC2
  76. PRINT "Supreme master: "; LEFT$(REC1$, 20), REC2; "pts."  'Print the entries on the screen."
  77. CLOSE #1
  78. COLOR 9
  79. PRINT "Best instructions ever devised:"
  80. PRINT "ALL YOU HAVE TO DO IS ANSWER THE LETTER TO THE ANSWER YOU WANT."
  81. PRINT "(IN CAPS)"
  82. PRINT
  83. PRINT "FOR AN EXAMPLE:"
  84. PRINT "You are trapped in deep whole, do you:"
  85. PRINT "A. Shout for help"
  86. PRINT "B. Try to dig out"
  87. PRINT "C. Eat your meatloaf sandwich"
  88. PRINT "D. Give up and die."
  89. PRINT
  90. PRINT "Then you would be expected to reply by typing in A,B,C,or D"
  91. PRINT "/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\"
  92. COLOR 7
  93. PLAY LUD2$
  94. 1 PRINT : PRINT "Are you ready to begin?"
  95. PRINT "A. Yes"
  96. PRINT "B. No"
  97. 3 INPUT a$
  98. IF a$ = "A" THEN GOTO 10
  99. IF a$ = "B" THEN PRINT "wrong answer. (hint: press A)"
  100. PRINT "simply press A or B (CAPS), please try again."
  101. GOTO 3
  102.  
  103. 10 intmus$ = "c4 c4 e4 e4 d4 d4 "
  104. 15 CLS
  105.  
  106. 20 PRINT "Congratulations, you safely begin the game... "
  107. m = 2
  108. s = 0
  109. U = 0
  110. 30
  111. 32 PRINT
  112.  
  113. C = 0
  114. 35 PRINT "You are suddenly walking down a dark alley."
  115. 37 PRINT "From out of nowhere, a cat jumps out of the darkness, onto you."
  116. 40 PRINT "Do you:"
  117. 42 PRINT "A. Run out of the alley to the bright street ahead."
  118. 43 PRINT "B. Catch the cat."
  119. 44 PRINT "C. Stab it with your knife."
  120. 45 PRINT "D. Let it jump on you."
  121. G = 1
  122. 46 INPUT b$
  123. 47 IF b$ = "A" THEN s = s + 5: GOTO 55
  124. 48 IF b$ = "B" THEN PRINT "Like Jerry Rice you recieve the feline in your grasp.": GOTO 53
  125. 49 IF b$ = "C" THEN PRINT "Unfortunately you don't have a knife.": GOTO 53
  126. 50 IF b$ = "D" THEN PRINT "Yeah, let's just stand there, like an idiot": GOTO 54.5
  127. 51 PRINT "Please supply either A,B,C, or D": GOTO 46
  128. 53 PRINT "The cat noisely scratches up your fingers, then your hand, your arm, torso, etc."
  129. 54 PRINT "In other words, it has 9 lives, you have zero. (Hint: don't try '"; b$; "' next time.)": GOTO 200
  130. 54.5 PRINT "The killer kat lands on your head, it's claws pierce your skull and paralyze"
  131. PRINT "your brain. The world turns into nothingness and, just as pointlessly as you"
  132. PRINT "were born, you die.  (Here's a hint, don't answer 'D' next time!)": GOTO 200
  133. 55 PRINT "You run to the well lit street."
  134. 56 PRINT
  135. 58 PRINT "The alley was probably safer than this. You are somewhere in the city of Nomad."
  136. 59 PRINT : PRINT "Tall buildings rise all around you. The sidewalk you are standing on continues"
  137. PRINT "north and south. To your east is a street with vehicles speeding by."
  138. 59.5 PRINT "Hookers, drug dealers, and trash litter the sidewalk."
  139.  
  140. 60 PRINT "Do you:"
  141. 62 PRINT "A. Ask a hooker for sex."
  142. 63 PRINT "B. Ask a drug dealer for drugs."
  143. 64 PRINT "C. Walk north on the sidewalk."
  144. 65 PRINT "D. Walk south on the sidewalk."
  145. 66 INPUT C$
  146. 67 IF C$ = "A" THEN CLS : PRINT "After selecting a good looking prostitute you ask her for her services.": GOTO 500
  147. 68 IF C$ = "B" THEN CLS : PRINT "You decide to ask the nice gentleman, with the trench coat what he has.": GOTO 600
  148. 69 IF C$ = "C" THEN PRINT "You casually walk northernly on the sidewalk.": GOTO 75
  149. 70 IF C$ = "D" THEN PRINT "You stroll south": GOTO 95
  150. 71 PRINT "It's real simple, B,C,A, or D": GOTO 66
  151. 75 PRINT : PRINT "The street is clean here. On your west is a restaurant with a help wanted"
  152. 76 PRINT "sign hanging in the window. The sidewalk spans north and south."
  153. 77 PRINT "Do You:"
  154. 78 PRINT "A. Walk west, try for the job"
  155. 79 PRINT "B. Walk north"
  156. 80 PRINT "C. Walk south"
  157. 81 PRINT "D. Walk east"
  158. 83 INPUT f$
  159. 84 IF f$ = "A" THEN PRINT "You wander into the Chinese takeout.": GOTO 400
  160. 85 IF f$ = "B" THEN PRINT "You stride north.": GOTO 700
  161. 86 IF f$ = "C" THEN PRINT "'Southward ho!'": GOTO 59
  162. 87 IF f$ = "D" THEN PLAY horn$: PRINT "You walk into the street and are pancaked by an oncoming semi.": GOTO 200
  163. 88 PRINT "YO! ENTER D,C,B, OR A!": GOTO 83
  164. 95 PRINT : PRINT "What a nice place. Drunks, druggies, schizophrenics, and Madonna lay passed"
  165. 96 PRINT "out on the sidewalk. The smell of urine burns your nose. This is a dead end."
  166. 97 PRINT "But there is a subway entrance. And a ladder leading up one of the buildings."
  167. 98 PRINT "You may:"
  168. 99 PRINT "A. Walk north"
  169. 100 PRINT "B. Go into the depths of the subway"
  170. 101 PRINT "C. Climb up that ladder"
  171. 102 PRINT "D. Walk east into the traffic"
  172. 103 INPUT G$
  173. 104 IF G$ = "A" THEN GOTO 59
  174. IF G$ = "B" THEN GOTO 300
  175. 105 IF G$ = "C" THEN PRINT "You climb about 20 feet up the ladder, when you slip on a banana peel and fall   to your death.": GOTO 200
  176. 106 IF G$ = "D" THEN PLAY horn$: PRINT "You wander into the traffic and are killed by a speeding Yugo.": GOTO 200
  177. GOTO 103
  178. 200 IF s > HS THEN HS = s: PRINT : PLAY LUD2$: COLOR 12: PRINT "New Hi Score": GOTO 200.5
  179. GOTO 201
  180. 200.5
  181. OPEN "NOMAD.DAT" FOR OUTPUT AS #1
  182.  
  183.         INPUT "ENTER YOUR NAME!: ", NAME$
  184.        WRITE #1, NAME$, HS, GRAF$
  185.     CLOSE #1
  186.     'Print the file to the screen.
  187.     OPEN "NOMAD.DAT" FOR INPUT AS #1
  188.     DO WHILE NOT EOF(1)
  189.         INPUT #1, NAME$, HS  'Read entries from file.
  190.            'Print the entries on the screen.
  191.     LOOP
  192.     CLOSE
  193.    
  194. 201 PLAY TUBA$: PRINT : PRINT "Final score:"; s; "pts.   Do you:"
  195. 201.5 COLOR 7: PRINT "A. Start over"
  196. 202 PRINT "B. End, give up, become a quitter, etc."
  197. 203 INPUT end$
  198. 204 IF end$ = "A" THEN GOTO 10
  199. 205 IF end$ = "B" THEN END
  200. 206 PRINT "Hint: A or B": GOTO 203
  201. 300 PRINT : PRINT "The subway is dark and smelly. Further travel towards a train is stopped by a"
  202. 302 PRINT "toll bar. There is a person watching over you, in the toll booth."
  203. 304 PRINT "Do you:"
  204. PRINT "A. Insert a token and proceed"
  205. PRINT "B. Hurdle the toll bar"
  206. PRINT "C. Attempt to murder the overlooker and proceed"
  207. PRINT "D. Go back up to the sidewalk"
  208. 306 INPUT h$
  209. IF h$ = "A" AND C = 1 THEN PRINT "You insert the token and proceed on.": C = 0: s = s + 5: GOTO 315
  210. IF h$ = "A" THEN PRINT "You don't have a token.": GOTO 306
  211. IF h$ = "B" THEN PLAY char$: PRINT "You expertly jump the bar, but unfortunately the toll operater sees it. She setsher pitbull loose, and you are soon it's supper.": GOTO 200
  212. IF h$ = "C" THEN PRINT "You lunge at the toll operater in attempt to strangle her. But she lets loose  her oversized canine and it rips you to shreds.": GOTO 200
  213. IF h$ = "D" THEN PRINT "You exit the subway entrance.": GOTO 95
  214. PRINT "Enter A, B, C, or D": GOTO 306
  215. 315 PRINT "As you walk into the subway you can hear the hum of the trains."
  216. 316 PRINT "There is a sign hanging down. It states that left is for the Zax train, right   is for Plezence."
  217. PRINT "It's possible to:"
  218. PRINT "A. Go forward onto the train tracks."
  219. PRINT "B. Go back to the subway entrance."
  220. PRINT "C. Go left "
  221. PRINT "D. Go right"
  222.  
  223. 320 INPUT i$
  224. IF i$ = "A" THEN PRINT "As you step on the tracks, 851 east-bound smacks into you.": GOTO 200
  225. IF i$ = "B" THEN PRINT "You go to the subway entrance.": GOTO 300
  226. IF i$ = "C" THEN PRINT "You go left, and before you know it, your heading towards Zax.":
  227. IF i$ = "D" THEN PRINT "You go right, and are soon cruising towards Plezence.": GOTO 2000
  228. GOTO 320
  229. 400 PRINT : PRINT "You grab the sign, and ask the man at the register for a job."
  230. 405 IF C = 1 THEN PRINT "The man says, 'GET LOST!' And hurls you onto the sidewalk.": GOTO 75
  231. 410 PRINT "    'Ooka chika si si frook kan fey,' says the Chinese man, enthusiastically."
  232. 420 PRINT "    'Oo ee oo ah ah walla walla bing bang,' you reply."
  233. 425 PRINT "    'Close enough, dude,' says the Chinese man, 'you got the job.'"
  234. 430 PRINT "The man hands you a funny looking apron and tells you to go wash the dishes."
  235. 435 PRINT "You begin scrubbing plates, when you feel a cornered coin in the murky water."
  236. PRINT "After further observation you discover it's a subway token.": C = 1: s = s + 10
  237. PRINT "At that moment, the boss walks in, and sees you not working."
  238. PRINT "    'Oooh kaka heeka ooka zeeka!' He exclaims, as he throws you out the door.": GOTO 75
  239. 500 PRINT : PRINT "The hooker takes you to a small motel room, where she quickly undresses."
  240. 501 PRINT "Her beautiful body easily excites you. She rubs her hands across your chest and"
  241. PRINT "starts kissing you."
  242. PRINT "Do you:"
  243. PRINT "A. Get it on"
  244. PRINT "B. Engage in meaningful conversation"
  245. PRINT "C. Bail out"
  246. PRINT "D. Ask for something oral"
  247. 510 INPUT D$
  248. IF D$ = "A" THEN PRINT "You jump on her and quickly empty your load.": GOTO 525
  249. IF D$ = "B" THEN PRINT "You quickly discuss the effects of communism on western civilization.": GOTO 525
  250. IF D$ = "C" THEN PRINT "You decide to run away from the babe. Leaving her 'all undressed with nowhere to go.'":  GOTO 59
  251. IF D$ = "D" THEN PRINT "She opens up and bites, as you're life quickly flashes in front of you.": GOTO 200
  252. PRINT "ENTER A,B,C, OR D!"
  253. 525 PRINT : PRINT "'Okay that'll be 50 bucks,' the hooker says."
  254. PRINT "Unfortunately, you only have "; m; " dollars."
  255. PRINT "So the hooker blows off your head with a sawed off shot gun.": GOTO 200
  256. 600 PRINT : PRINT "The man in the corner, opens up his trench coat exposing various pills, and"
  257. PRINT "powders."
  258. PRINT "'First ya' gotta' give me ten bucks."
  259. IF m > 9 THEN m = m - 10: PRINT "You hand the dealer your hard earned dough.": GOTO 605
  260. IF m < 10 THEN PRINT "You tell the dealer you only have "; m; " dollars, and he let's you go.": GOTO 59
  261. 605 PRINT "'Now then, whatcha want?' Asks the dealer, hardly moving his lips."
  262. PRINT "A. A purple pill"
  263. PRINT "B. An orange pill"
  264. PRINT "C. Some gray powder"
  265. PRINT "D. Just say no"
  266. 606 INPUT a$
  267. 610 IF a$ = "A" THEN C$ = "purple pill": GOTO 1000
  268. 615 IF a$ = "B" THEN C$ = "orange pill": GOTO 1000
  269. 620 IF a$ = "C" THEN C$ = "gray powder": GOTO 1000
  270. 625 IF a$ = "D" THEN PRINT "You 'just say no,' and the dealer fully returns your 8 dollars.": m = m + 8: GOTO 59.5
  271. PRINT "By now, you should know that only A,B,C or D will work.": GOTO 606
  272. 700 PRINT "There is a movie theater here. The entrance advertises that the show, 'Attack of"
  273. PRINT "the Mammoth Gerbils' is $4.00. A man is selling tickets at the door."
  274. PRINT "The sidewalk stops going north here, but an unmarked door enters a building in"
  275. PRINT "that direction."
  276. 705 PRINT "It's possible to:"
  277. PRINT "A. Go to the movies"
  278. PRINT "B. Enter the unmarked door"
  279. PRINT "C. Go south"
  280. PRINT "D. Attempt to run across the busy street"
  281. 707 INPUT a$
  282. IF a$ = "A" AND m > 3 THEN PRINT "You give the ticket man four dollars and enter the theater.": m = m - 4: PRINT "uNFORTUNATELY, tHERE IS NO REAL MOVIE THEATER, 'CUZ THIS IS THE UNREGESTERED": PRINT "VERSION OF THIS ULTRAHIP GAME!!! BUT, TO BAD, THE DUDE STILL TOOK YOUR FOUR BUCKS!!!"
  283. IF a$ = "A" THEN PRINT "You can't get in with "; m; " dollars.": GOTO 707
  284. IF a$ = "B" AND U = 1 THEN PRINT "The door won't open.": GOTO 707
  285. IF a$ = "B" THEN PRINT "You enter the unmarked door.": GOTO 725
  286. IF a$ = "C" THEN PRINT "You walk south, backwards, on your hands.": GOTO 75
  287. IF a$ = "D" THEN PRINT "You attempt to cross the street and, guess what, you get creamed by a limo.": GOTO 200
  288. PRINT "A,B,C or D, you #$!@er": GOTO 707
  289. 725 COLOR 11: PRINT : PRINT "After you enter in the unmarked door, it slams shut as if by the wind. You try"
  290. PRINT "to reopen it, but it's fastened by four large locks. You're trapped in"
  291. PRINT "small, padded white room. Suddenly, a voice booms out of nowhere."
  292. U = 1
  293. PRINT
  294. PLAY "O1 CDCDA"
  295. COLOR 10
  296. PRINT "    'HELLO, AND WELCOME TO MY FUNHOUSE, HA HA HA!' The room begins flashing"
  297. PRINT "psychedellic colors."
  298. PRINT "    'IF YOU WANT TO GET OUT OF HERE ALIVE, YOU'D BETTER BE PRETTY DAMN SMART."
  299. PRINT "IF YOU GET ONE QUESTION WRONG... I'LL FEED YOU TO FREGG!'"
  300. PRINT "Heavy metal music blares through the room."
  301. PRINT "'QUESTION NUMBER ONE,"
  302. PRINT "WHAT IS THE CAPITOL OF IOWA?'"
  303. PRINT "'PLEASE ANSWER IN CAPS,'the voice adds, as an afterthought."
  304. INPUT Z$
  305. IF Z$ = "DES MOINES" THEN PRINT "The top lock clicks open.": s = s + 1: GOTO 727
  306. PRINT "'WRONGO, ACE!'": GOTO 745
  307. 727  PRINT : PRINT "'THAT WAS AN EASY ONE. HERE'S SOMETHING A LITTLE CHALLENGING,"
  308. PRINT "HOW MANY POUNDS ARE IN 1.5 TONS?'"
  309. INPUT Z$
  310. IF Z$ = "3000" THEN PRINT "Another lock slides open, and the voice grunts.": s = s + 5: GOTO 728
  311. PRINT "'AS IF "; Z$; " IS EVEN CLOSE! HA HA HA'": GOTO 745
  312. 728 PRINT : PRINT "'OKAY, MISTER SMARTY PANTS,'the voice booms, 'HERE'S ONE EVEN FREGG COULDN'T GET "
  313. PRINT "WHAT IS 'THE BIG SKY' STATE?'"
  314. INPUT Z$
  315. IF Z$ = "MONTANA" THEN PRINT : PRINT "'CRAP!'Shouts the voice. Another lock falls open. Only one lock remains locked.": s = s + 10: GOTO 730
  316. PLAY "o1 c4": PRINT "'WRONG!'": GOTO 745
  317. 730 BEEP: BEEP: BEEP: PRINT "'AND FOR THE FINAL QUESTION, THE QUESTION THAT DECIDES YOUR FATE OR FREEDOM."
  318. PRINT "WHAT PLANET HAS THE MOONS ARIEL, MIRANDA AND OBERON?'"
  319. INPUT Z$
  320. IF Z$ = "URANUS" THEN PLAY char$: COLOR 4: PRINT : PRINT "'FREEDOM GRANTED.' The final lock opens. You quickly leave": PRINT "the building and the unmarked door closes behind you.": s = s + 10: COLOR 7: PRINT : GOTO 700
  321. PLAY "c4 o1 c4": PRINT : PRINT "'SORRY'": GOTO 745
  322. 745 PRINT : PRINT : COLOR 5: PRINT "A trap door falls open beneath you. You fall down four stories, and land on cold"
  323. PRINT "cement, causing both of your legs to break. You look up in agony, to see an 8"
  324. PRINT "foot tall baby, crawling towards you."
  325. PRINT "     'Me Fregg,' groans the infant, smiling. He grabs you by your collar,"
  326. PRINT "and throws you into the air. On your descent, he forgets to catch you, resulting"
  327. PRINT "in an unpleasant mess, as you splatter on the cement. Barely alive, you shout"
  328. PRINT "for help."
  329. PRINT "     'SHUT UP!' Screams the baby, as he jumps on you. He jumps up and down,"
  330. PRINT "crushing every rib in your body. Finally you drown in your own blood.": COLOR 7: GOTO 200
  331.  
  332.  
  333. 1000 'PROGRAM ssaver
  334.  
  335. SCREEN 1
  336. COLOR 1, 0
  337. PLAY "MF"
  338. 1110 ' LOOP
  339. GOSUB 1400 'RANDOM NUMBERS
  340. GOSUB 1600 'OUTPUT
  341. IF INKEY$ <> "" THEN SCREEN 0: WIDTH 80: PRINT "You swallow the "; C$; " and suddenly begin going crazy.": PRINT "You scream, jump, laugh, and finally your heart explodes, showering the city": PRINT "with blood. Remember kids: JUST SAY NO": GOTO 200
  342.  
  343. GOTO 1110
  344. ' END LOOP
  345. SCREEN 0
  346. END
  347. 1400 ' SUB RANDOM NUMBERS
  348. 1410 LET X1 = INT(320 * RND)
  349. 1420 LET Y1 = INT(200 * RND)
  350. LET X2 = INT(320 * RND)
  351. LET Y2 = INT(200 * RND)
  352. LET C = INT(4 * RND)
  353. LET BACK = INT(16 * RND)
  354. LET FREQ = 50 + INT(1000 * RND)
  355. RETURN
  356. '
  357. 1600 'SUB OUTPUT
  358. COLOR BACK
  359. LINE (X1, Y1)-(X2, Y2), C, BF
  360. SOUND FREQ, 1
  361. RETURN
  362. '
  363.  
  364. 1810  ' LOOP
  365.     LET KY$ = INKEY$
  366. IF KY$ = "" THEN 1810
  367. ' END LOOP
  368. RETURN
  369.  
  370. 2000 trmus$ = "c4d4e4d4c4d4e4d4e4d4e4c4e4c4"
  371. PRINT "The subway train is empty, except for a homeless man, wearing a paper bag, and"
  372. PRINT "guzzling on a bottle. The train is smelly, and thouroghly decorated with gang"
  373. PRINT "grafitti, such as 'The Bukas' and 'The Plezence Peasents.'"
  374. PLAY trmus$
  375. PRINT "The public transportation rumbles swiftly, and finally stops at the Plezence"
  376. PRINT "subway station."
  377. 2020 PRINT : PRINT "The plezence station is empty, except for the newspaper stand, and the man"
  378. PRINT "selling rolex watches for a mere eight dollars."
  379. PRINT "You can:"
  380. PRINT "A. Buy something at the magazine stand."
  381. PRINT "B. Board the train to Nomad"
  382. PRINT "C. Board the train to Zax"
  383. PRINT "D. Exit the subway station"
  384. PRINT "E. Travel deeper into the subway, on foot"
  385. IF m >= 8 THEN PRINT "F. Purchase an imitation Rolex"
  386. 2021 PRINT : INPUT "Whatcha' whatcha' whatcha' want "; Z$
  387. IF Z$ = "A" THEN PRINT "You walk up to the magazine stand.": GOTO 2030
  388. IF Z$ = "B" THEN PRINT "You step onto the train.": PLAY trmus$: PRINT "After a small time you arrive in Nomad.": GOTO 316
  389. IF Z$ = "C" THEN PRINT "You step onto the train.": PLAY trmus$: PRINT "After a small time you arrive in Nomad.": GOTO 316
  390. IF Z$ = "D" THEN PRINT "You climb up into the plezent city of Plezence.": GOTO 5000
  391. IF Z$ = "E" THEN PRINT "You walk into deep into the subway station.:goto 2100"
  392. IF m >= 8 AND Z$ = "F" THEN PRINT "You hand the man eight bucks, and he hands you a shiny watch.": m = m - 8: w = 1: GOTO 2021
  393. GOTO 2021
  394. 2030 PRINT : PRINT "There is quite a selection of magazines here."
  395. 2032 PRINT "    'Whatcha want?' Inquires the gruff salesman."
  396. PRINT "A. Purchase 'Plezence Weekly'"
  397. PRINT "B. Buy the 'National Inquisitor'"
  398. PRINT "C. Endulge in 'French Chicks'"
  399. PRINT "D. Not buy anything"
  400. 2034 INPUT Z$
  401. IF Z$ = "D" THEN GOTO 2020
  402. IF m < 2 THEN PRINT "You can't buy that with"; m; "dollars!": GOTO 2020
  403. IF Z$ = "A" THEN m = m - 2: s = s + 5: GOTO 2500
  404. IF Z$ = "B" THEN m = m - 2: GOTO 2040
  405. IF Z$ = "C" THEN m = m - 2: s = s + .5: GOTO 2045
  406. GOTO 2034
  407. 2040 PRINT "***National Inquisitor***  Table of contents:"
  408. PRINT "A. Cover story about Michael Jackson's oxygen chamber for his pet chimp's white": PRINT "elephant man skeleton"
  409. PRINT "B. What the toilet industries don't want you to know"
  410. PRINT "C. Top ten ways to live a longer life"
  411. PRINT "D.  Close the tabloid"
  412. INPUT Z$
  413. IF Z$ = "A" THEN GOTO 2042
  414. IF Z$ = "B" THEN GOTO 2044
  415. IF Z$ = "C" THEN GOTO 2046
  416. IF Z$ = "D" THEN GOTO 2020
  417. GOTO 2040
  418. 2042 PRINT "The Cover Story by Phil Auv Shwyt"
  419. PRINT "        Michael Jackson, the self proclaimed 'King of Pop,' recently purchased"
  420. PRINT "a new oxygen chamber. The 5 million dollar chamber was for his pet chimp's"
  421. PRINT "white elephant man skeleton. According to a reliable source, Michael pet "
  422. PRINT "chimanzee (which cost 23 million) told Jackson that the skeleton (12 million) was"
  423. PRINT "quote, 'becoming dry.' Jackson immediatly handed the primate a 5 million dollar"
  424. PRINT "bill and told him to go to the Quiky-Mart and buy an oxygen chamber."
  425. PRINT
  426. GOTO 2040
  427. 2044 PRINT "Investigative Trash by Nat Trew et. al."
  428. PRINT "     Has it ever seemed strange to you that all the toilet manufactorers of"
  429. PRINT "America never let people take tours of their plants? Well, this has always"
  430. PRINT "struck me as weird, so I decided to take a little tour of my own. First, I"
  431. PRINT "made myself a toilet makers costume, then I went to the toilet plant."
  432. PRINT "What I found was truly amazing! Tiny little trolls make the seats, yeah, and"
  433. PRINT "and little martians make the bowl, yeah, and they put little cameras in the"
  434. PRINT "toilets, yeah, that's the ticket. And they put special sensors in the handles"
  435. PRINT "and the sensors, they read your mind, yeah, and they send the mind readings to"
  436. PRINT "their spaceship. And all the toilets, ... they have little bombs built in them,"
  437. PRINT "and, and the aliens can blow us up whenever they want... and..."
  438. PRINT
  439. GOTO 2040
  440. 2045 PRINT "You open up the magazine to feast your eyes on very shapely nude women."
  441. PRINT "Translated into Ascii they look like this:"
  442. PRINT "        "
  443. PRINT "      -0 0-"
  444. PRINT "        x"
  445. PRINT "       / \"
  446. GOTO 2020
  447.  
  448. 2046 PRINT "Top Ten Ways to a Longer Life by Gytov Yerass"
  449. PRINT "10. Eat food that tastes like crap"
  450. PRINT "9. Exercise 3 times a week"
  451. PRINT "8. Buy pills out of our magazine"
  452. PRINT "7. Read Natinal Inquisitor at least once a month"
  453. PRINT "6. Eat food advertised in our magazines"
  454. PRINT "5. Smoke low tar cigarettes, advertised in our magazine"
  455. PRINT "4. Read Natinal Inquisitor twice a month"
  456. PRINT "3. Get frozen for a hundred years"
  457. PRINT "2. Sit on your ass and not ever do anything"
  458. PRINT "1. Buy National Inquisitor"
  459. PRINT "                  ('That Really Sucked!')"
  460. GOTO 2040
  461.  
  462. 2500 PRINT " *Plezence Weekly*   Index:"
  463. PRINT "A. Cover story about new shopping center"
  464. 2505 PRINT "B. Editorial about crime in Plezence"
  465. 2510 PRINT "C. Movie review: Attack of the Mammoth Gerbils"
  466. 2515 PRINT "D. Close the magazine, and not read a thing"
  467. 2520 INPUT x$
  468. 2525 IF x$ = "A" THEN GOTO 2550
  469. 2530 IF x$ = "B" THEN GOTO 2560
  470. 2540 IF x$ = "C" THEN GOTO 2570
  471. 2545 IF x$ = "D" THEN GOTO 2020
  472. GOTO 2520
  473. 2550 PRINT "                                The Big Store"
  474. PRINT "                               by Seymour Hair"
  475. PRINT "   The newest addition to Plezence's fine shopping experiance has finally been"
  476. PRINT "opened. The Big Store, a hundred acre shopping mall cut it's ribbons Friday."
  477. PRINT "Shoppers can enjoy 49 restaurants, 12 shoe stores, 3 arcades, and an indoor"
  478. PRINT "wave pool..... (the story continues for about 3 pages until something catches"
  479. PRINT "your attention)..... The first 99 people to bring in a portrait of themselves"
  480. PRINT "to Bambee's hair salon will get a free mohawk.... (the rest of the article is"
  481. PRINT "unimportant trash).....": GOTO 2500
  482. 2560 PRINT "Editorial:"
  483. PRINT "   As chief of the Plezence Intercity Gang Squadron, I am the foremost gang"
  484. PRINT "crime authority. I believe it is my job to inform you, the citizens of Plezence"
  485. PRINT "that gang activity and crimes are on the rise. The recent burning down of an"
  486. PRINT "area McDonalds is an example of the things that are happening here. I hope that"
  487. PRINT "the good people of Plezence will exhibit caution, and common sense when"
  488. PRINT "travelling into northern Plezence."
  489. PRINT " (Blah Blah Blah)"
  490. PRINT "              Thank you, Buck Scabe, P.I.G.S."
  491. GOTO 2500
  492. 2570 PRINT " Movie Reviews by Sis Kell & E. Bert"
  493. PRINT "Attack of the Mammoth Gerbils is a true masterpiece in contemperary film."
  494. PRINT "From the very beginning, this movie is action packed and exciting to the eye."
  495. PRINT "My personal favorite part is when the albino gerbil attacks that group of"
  496. PRINT "pre-schoolers. I've always wondered if the human skull could withstand the"
  497. PRINT "impact of a overgrown gerbil jaw, and now I know!"
  498. PRINT "I give it 2 thumbs, and 1 toe up. -Sis Kell"
  499. PRINT
  500. PRINT "I totally disagree Sis, this film was distasteful, and downright degrading to"
  501. PRINT "the American film industry. The cinematography stank, the special effects sucked"
  502. PRINT "and they used ketchup for blood. The only professional in this film was"
  503. PRINT "Dick Van Patton, and he was the assistant key grip! This film has as much"
  504. PRINT "substance as the eskimos have coconut trees."
  505. PRINT "2 thumbs down, way down. -E. Bert"
  506. GOTO 2500
  507. 5000 PRINT "Oh, the sights of the city."
  508. 5010 PRINT : PRINT "You are standing outside of the subway entrance, located in a small park."
  509. PRINT "The air is cool as you gaze at your surroundings. The park is mainly cement,"
  510. PRINT "one big terraced slab of concrete, with trees surrounding. You can see a group"
  511.  
  512. PRINT "of hippies playing hackie sack, and a few people skating around on blades."
  513. PRINT "a fountain sprays water in the center of the park."
  514. PRINT "Some big, tough looking guys play basketball to your west."
  515. PRINT
  516. 5015 PRINT "You can:"
  517. PRINT "A. Go north"
  518. PRINT "B. Go south"
  519. PRINT "C. Go east"
  520. PRINT "D. Go west, try to join in the basketball game"
  521. PRINT "E. Go into the subway"
  522. m = 10
  523. INPUT "Where to, sir"; x$
  524. IF x$ = "A" THEN PRINT "You walk northenly...": GOTO 5100
  525. IF x$ = "B" THEN PRINT "You walk southernly...": GOTO 5300
  526. IF x$ = "C" THEN PRINT "You walk easternly...": GOTO 5500
  527. IF x$ = "D" THEN PRINT "You strut to the hoops...": GOTO 5700
  528. IF x$ = "E" THEN GOTO 2020
  529. GOTO 5015
  530. 5100 PRINT "At the north end of the park, the smell of frankfurters soothes the air."
  531. PRINT "A man sells weiners, at a cart on wheels, advertising '2 Dogs for a Dollar.'"
  532. PRINT "Some people stand around a man moving shells on a table, money is in the man's"
  533. PRINT "hands. The park turns into a sidewalk north and the center of the park is to"
  534. PRINT "south."
  535. PRINT "Options include, and are limited to:"
  536. PRINT "A. Go north"
  537. PRINT "B. Go south"
  538. PRINT "C. Get some dogs for a dollar"
  539. PRINT "D. See what's goin' on with the shells"
  540. 5105 INPUT "Huh"; x$
  541. IF x$ = "A" THEN PRINT "North it is...": GOTO 5150
  542. IF x$ = "B" THEN PRINT "You go south": GOTO 5010
  543.  
  544. IF x$ = "C" THEN PRINT "You look in your pocket to see if you have a buck and...": GOTO 5250
  545.  
  546. IF x$ = "D" THEN PRINT "You shuffle to the shell game...": GOTO 5125
  547. GOTO 5105
  548. 5125 PRINT "A man is moving shells 3 shells around on a table. One of the shells has the"
  549. PRINT "penny under it. You can bet him money that you will pick the shell with the"
  550. PRINT "penny, and if your guess is right, he'll double your money."
  551. 5126 PRINT "You may:"
  552. PRINT "A. Play the game"
  553. PRINT "B. Go north"
  554. PRINT "C. Go south"
  555. PRINT "D. Go get a hot dog"
  556. INPUT y$
  557. IF y$ = "A" THEN GOTO 5130
  558. IF y$ = "B" THEN PRINT "North you go...": GOTO 5150
  559. IF y$ = "C" THEN PRINT "South it is, then...": GOTO 5200
  560. IF y$ = "D" THEN PRINT "You decide to spend your money elsewhere...": GOTO 5250
  561. GOTO 5126
  562. 5130 PRINT
  563. PRINT "You look in your wallet to discover "; m; " dollars."
  564.  IF m = 0 THEN PRINT "You can't play the shell game without any money!": GOTO 5126
  565. PRINT "You can bet 1 to "; m; " dollars."
  566. PRINT "    'How much you bettin'?' Asks the dealer, a look of uneasiness on his face."
  567. 5131 INPUT "Enter your wager "; b
  568.  
  569. IF b > m THEN PRINT "You can't bet more than you have!": GOTO 5131
  570. IF b < m THEN PRINT "You can't bet less money than you have!": GOTO 5131
  571.  
  572. PRINT "You place the money on the table and the game begins..."
  573. PRINT "He places the penny under the third shell and quickly begins shuffling them"
  574. PRINT "around. You see it go in the middle, the left, the middle, the right, the..."
  575. RANDOMIZE TIMER
  576. x% = INT(RND * 3) + 1
  577. PRINT "uh, oh no, you've lost it, but as he stops it looks like the one with the penny"
  578. PRINT "on the left. Of course, you're not positive, maybe it's in the middle, or on the"
  579. PRINT "right.   Oh well, you might as well guess."
  580. PRINT "A. Left shell"
  581. PRINT "B. Right shell"
  582. PRINT "C. Middle shell"
  583. 5132 INPUT "Which shell "; y$
  584. IF y$ <> "A" AND y$ <> "B" AND y$ <> "C" THEN GOTO 5132
  585. IF G = 1 THEN m = m + b: G = 2: PRINT "Good job! You now have "; m; " dollars!": GOTO 5126
  586. IF y$ = "A" AND x% = 1 THEN GOTO 5133
  587. IF y$ = "B" AND x% = 2 THEN GOTO 5133
  588. IF y$ = "C" AND x% = 3 THEN GOTO 5133
  589.  
  590. m = m - b
  591. PRINT "Sorry, now you only have "; m; " dollars.": GOTO 5126
  592. 5133 m = m + b: s = s + 2: PRINT "Good job! You now have "; m; " dollars!": GOTO 5126
  593. 5150 PRINT
  594. PRINT "REGISTERED VERSION ONLY!"
  595. GOTO 5100
  596. 5200
  597. 5250 PRINT "  A large man wearing a small costume looks down on you."
  598.      PRINT "    'You want some hot dogs or not?' He says in a wheezy voice.     "
  599.      PRINT
  600.      PRINT "A. Yes!"
  601.      PRINT "B. No, thank you."
  602.      PRINT "C. Put your hands up and give me all your money"
  603.      INPUT y$
  604.      IF y$ = "A" AND m < 1 THEN PRINT : PRINT "You don't have that kind of money.": GOTO 5250
  605.      IF y$ = "A" AND m >= 1 THEN m = m - 1: PRINT "You hurridly stuff the weiners down your throat": PRINT "You feel rejuvinated!": s = s + 1: GOTO 5125
  606.      IF y$ = "B" THEN PRINT " FINE!!!": GOTO 5125
  607.      IF y$ = "C" THEN GOTO 5251
  608.  
  609. 5251 PRINT
  610.  IF dog = 2 THEN GOTO 5252
  611.  PRINT : PRINT "    'Here you go sir.' The man kindly hands you four dollars.": m = m + 5: s = s + 1: dog = 2: GOTO 5125
  612. 5252 PRINT : PRINT "    BOOM BOOM BOOM, you're dead. The hot dog salesman just blew you away with": PRINT "his elephant gun. ": GOTO 200
  613.  
  614.  
  615. 5300 PRINT "You are looking at the southern end of the park. Huge trees loom overhead."
  616. PRINT "The path goes north, to the fountain, and south to the bustling city."
  617. PRINT "You can:"
  618. PRINT "A. Go north"
  619. PRINT "B. Go south"
  620. PRINT "C. Take a leak on one of the trees"
  621. INPUT y$
  622. IF y$ = "A" THEN GOTO 5010
  623. IF y$ = "B" THEN GOTO 10000
  624. IF y$ = "C" THEN PRINT "From out of nowhere, a pig appears, handcuffs you, then escorts you to his car.": GOTO 5305
  625. 5305 PRINT "The fuzz pushes your head against the driver side window, then starts to yell."
  626. PRINT "     'Hey punk, whatcha doin' takin a piss in my park, ever heard of toilet?!?"
  627. PRINT "I don't like poor perverts pissin' in my park! Of course if you have some"
  628. PRINT "money, I might just let you go.'"
  629. PRINT "Do you:"
  630. PRINT "A. Offer the man some money"
  631. PRINT "B. Tell him that your are morally opposed to bribes"
  632. PRINT "C. Try to run away"
  633. 5306 INPUT y$
  634. IF y$ = "A" THEN GOTO 5316
  635. IF y$ = "B" THEN PRINT "The kind policeman does a quick anal drug check, then sends you to jail.": GOTO 5310
  636. IF y$ = "C" THEN PRINT "You kick the cop in the crotch, bite his foot, then attempt to run away.": PRINT "Unfortunately for you, this action pisses the policeman off and he shoots you": PRINT "twelve times in the back of the head.": GOTO 200
  637. GOTO 5306
  638. 5310 PRINT : PRINT "At the city jail, you are put away in a cell and bail is set at $50."
  639. IF m >= 50 THEN PRINT "You gladly give them $50 and they release take you to the closest mall."
  640. IF m < 50 THEN PRINT "Too bad, you don't have $50, you end up enjoying your time in jail and return": PRINT "there many more times during your life. You become a criminal, and find yourself": PRINT "leading an empty life of crime. Finally you are shot during a robbery.": GOTO 200
  641. 5316 PRINT
  642. PRINT "'So, how much money are we talking about anyways?"
  643. INPUT bribe
  644. IF bribe > m THEN PRINT "You can't bribe imaginary money, you only have $"; m: GOTO 5316
  645. IF bribe > 25 AND bribe > .5 * m THEN PRINT "'Okay, punk. Get outta' here!'": GOTO 5300
  646. PRINT " Okay, you little bastard, you're goin' downtown.": GOTO 5310
  647. 5500
  648. 5700
  649. 10000 PRINT "       You are standing before a huge glass building. A thirty foot neon sign"
  650. PRINT "reads:                             PLESENCE BANK"
  651. PRINT "You conclude that the building must be a bank of some sort."
  652. PRINT "     A bike path travels east and west, and a park lies to the north."
  653. PRINT
  654. PRINT "Would you be inclined to:"
  655. PRINT "A. Enter the bank"
  656. PRINT "B. Go north to the park"
  657. PRINT "C. East"
  658. PRINT "D. West"
  659. 10001 INPUT b$
  660. IF b$ = "A" THEN GOTO 10500
  661. IF b$ = "B" THEN GOTO 5300
  662. IF b$ = "C" OR b$ = "D" THEN GOTO 10250
  663. GOTO 10001
  664. 10250
  665. 10500 PRINT "You thought it was a bank, but it's really a maze of mirrors. You can't"
  666. PRINT "tell north from south, east from west, up from down!!! Further more, you can't"
  667. PRINT "go backwards!!!"
  668. 10502 PRINT
  669. PRINT "What shall you do?"
  670. PRINT "A. Scream for help "
  671. PRINT "B. Go forward"
  672. PRINT "C. Go Left"
  673. PRINT "D. Go right"
  674. 10501 INPUT b$
  675. IF b$ = "A" THEN GOTO 10510
  676. IF b$ = "B" THEN PRINT "Ouch! That hurt!"
  677. IF b$ = "C" THEN PRINT "Thud! Ouch! That hurt!"
  678. IF b$ = "D" THEN PRINT "Smack! Thud! Ouch! That hurt!"
  679. GOTO 10501
  680. 10510 PLAY "CA"
  681. PRINT "You feel a brief sensation of heaviness."
  682. 10513 PRINT
  683. PRINT "What shall you do?"
  684. PRINT "A. Scream for help "
  685. PRINT "B. Go forward"
  686. PRINT "C. Go Left"
  687. PRINT "D. Go right"
  688. INPUT b$
  689. IF b$ = "A" THEN PRINT "You feel a brief sensation of lightness.": PLAY "ca": GOTO 10502
  690. IF b$ = "B" THEN PRINT "You successfully step forward!": GOTO 10520
  691. IF b$ = "C" OR b$ = "D" THEN PRINT "You hit glass.": GOTO 10513
  692. GOTO 10513
  693. 10520 PRINT
  694. PRINT "What shall you do?"
  695. PRINT "A. Scream for help "
  696. PRINT "B. Go forward"
  697. PRINT "C. Go Left"
  698. PRINT "D. Go right"
  699. INPUT b$
  700. IF b$ = "A" THEN PLAY "CA": PRINT "An anvil drops out of nowhere and smashes you.": GOTO 200
  701. IF b$ = "B" THEN PRINT "You step forward.": GOTO 10530
  702. IF b$ = "C" OR b$ = "D" THEN PRINT " You make no progress": GOTO 10520
  703. GOTO 10520
  704. 10530 PRINT
  705. PRINT "What shall you do?"
  706. PRINT "A. Scream for help "
  707. PRINT "B. Go forward"
  708. PRINT "C. Go Left"
  709. PRINT "D. Go right"
  710. INPUT b$
  711. IF b$ = "A" THEN PLAY "ca": PRINT "You feel a sensation of lightness.": GOTO 10600
  712. IF b$ = "B" OR b$ = "C" THEN PRINT "You do not progress"
  713. IF b$ = "D" THEN PRINT "You fall into a pool of battery acid.": GOTO 200
  714. GOTO 10530
  715. 10600 PRINT "You're standing in a phone booth. The phone booth is standing in a mall."
  716. PRINT "The mall is standing in Plezence. "
  717. PRINT "There is graffiti on the telephone booth."
  718. 10601 PRINT
  719. PRINT "Do u:"
  720. PRINT "A. Leave the booth"
  721. PRINT "B. Read the graffiti"
  722. PRINT "C. Use the phone"
  723. PRINT "D. Scream"
  724. INPUT b$
  725. IF b$ = "A" THEN PRINT "You exit the phone booth.": GOTO 20000
  726. IF b$ = "B" THEN GOTO 10605
  727. IF b$ = "C" THEN GOTO 10610
  728. IF b$ = "D" THEN PRINT "A vietnam vet claws you to death.": GOTO 200
  729. GOTO 10601
  730. 10605 PRINT
  731. PRINT "       THE BUKAS KICK ASS!!!"
  732. PRINT "             FOR A GOOD TIME CALL JONNY       jim was"
  733. PRINT "                     555-6699                   here"
  734. PRINT "    SATIN LIVES"
  735. PRINT " T                            RHONDA 555-3229"
  736. PRINT " h"
  737. PRINT " e       Snoop Loggy Frog Was Here"
  738. PRINT "                                     NEW KIDS ON THE BLOCK RULE!"
  739. PRINT " F"
  740. PRINT " o          FOR A GOOD TIME CALL 555-2418"
  741. PRINT " n"
  742.  
  743. OPEN "NOMAD.DAT" FOR INPUT AS #2
  744. INPUT #2, REC$, REC2, GRAF$
  745. HS = REC2
  746. PRINT " z  ", GRAF$
  747. CLOSE #2
  748. GOTO 10601
  749. 10610 PRINT "Enter the number you wish to call. (ie. 555-1234)"
  750. INPUT b$
  751. IF b$ = "555-1234" AND m >= .25 THEN GOTO 10612
  752. IF b$ = "555-6699" AND jonny = 0 AND m >= .25 THEN GOTO 10622
  753. IF b$ = "555-3229" AND m >= .25 AND coinage <> 1 THEN GOTO 10777
  754. IF b$ = "666" THEN GOTO 10623
  755. IF b$ = "1-800-ABC-DEFG" THEN GOTO 10700
  756. PRINT
  757. PRINT "     'I'm sorry the number you have dialed did not go through'"
  758.  
  759. GOTO 10610
  760. 10612 PRINT "'Hello you've reached the number of Nathan Green. I'm not home right now, so"
  761. PRINT "please leave a message after the beep.'"
  762. PLAY "C"
  763. m = m - .25
  764.  
  765. 10613 OPEN "NOMAD.DAT" FOR OUTPUT AS #2
  766.  
  767.    
  768.         INPUT "ENTER YOUR MESSAGE: ", GRAF$
  769.        WRITE #2, REC$, REC2, GRAF$
  770.     CLOSE #2
  771. GOTO 10601
  772. 10622 m = m - .25
  773. PRINT "A suave and sexy male voice answers the phone. 'Hello, don't you look sexy"
  774. PRINT "this evening. This is Jonny, if you want to talk tonight, press in your credit"
  775. PRINT "card number now. The charge is 2 dollars per minute. You must be 18 or older."
  776. INPUT "Credit Card #: "; b$
  777. IF b$ = "35007" THEN GOTO 10625
  778. IF b$ = "666" THEN GOTO 10623
  779. PRINT ""; Goodbye, darling.' click."
  780. GOTO 10601
  781. 10623 PRINT
  782. PRINT "'Hello, you've reached hell's answering service. If you'd like to "
  783. PRINT "leave a message to Satan press 1"
  784. PRINT "talk to an admissions officer press 2"
  785. PRINT "talk to Satan press 3"
  786. INPUT b$
  787. IF b$ = "1" OR b$ = "ONE" THEN GOTO 10613
  788. IF b$ = "2" OR b$ = "TWO" THEN GOTO 10624
  789. IF b$ = "3" OR b$ = "THREE" THEN GOTO 10623.5
  790. PRINT "'Please repeat your choice.'": GOTO 10623
  791. 10624
  792. 10623.5 PRINT
  793. COLOR 4
  794. PRINT "     'WHAT THE HELL DO YOU WANT?!?'"
  795. PRINT
  796. INPUT hell$
  797. IF hell$ = "" THEN GOTO 10623.5
  798. PRINT "     'YOU CAN'T GET "; hell$; "FROM ME! YOU STUPID LOSER!'"
  799. PRINT
  800.  
  801. COLOR 7
  802. s = s * -.1
  803. PRINT "You spontaneously combust and find yourself in a giant plastic gerbil ball."
  804. PRINT "You spend all eternity rolling around on an endless blue carpet."
  805. GOTO 200
  806.  
  807.  
  808.  
  809. 10625 PRINT
  810. jonny = 1
  811. s = s + 2
  812. PRINT "'Oh, thank you baby. I love it when you talk dirty.' Waves and seagulls"
  813. PRINT "sound in the background. 'My names Jonny, Jonny Sampson. What's yours?"
  814. INPUT b$
  815. IF b$ = "" THEN GOTO 10625
  816. PRINT b$; "'s such a beautiful name. It sounds French. J'aime vous beaucoup."
  817. PRINT "So, what do you like to do "; b$; "? I like indoor sports myself."
  818. 10626 INPUT b$
  819. IF b$ = "" THEN GOTO 10626
  820. PRINT "     'But don't you think that one should "; b$; " with ones pets?"
  821. PRINT "You know what, I'm feeling really hot all of a sudden. I think I'll take off"
  822. PRINT "my bikini shorts. What is that you're wearing?"
  823. 10627 INPUT b$
  824. IF b$ = "" THEN GOTO 10627
  825.  
  826. PRINT "     While you certainly look stunning. Nobody knows this, but sometimes I"
  827. PRINT "like to pull down the shades and put on my cute pink "; b$; "."
  828. PRINT "BzzBzzz Cshkrickplop. The line suddenly goes dead and you're disconnected."
  829. GOTO 10601
  830. 10700 CLS
  831. PRINT "     'Hello, hooked on phonics. How may I assist you?"
  832. INPUT b$
  833. IF b$ = "HELP ME! I'M HOOKED ON PHONICS!" THEN PRINT : GOTO 10720
  834. IF b$ = "SUCK MY COCK" THEN PRINT "Don't talk to me like that!": s = s - 1
  835. PRINT "Click..."
  836. GOTO 10601
  837. 10720 PLAY "cbcd ddaca"
  838. s = s + 1
  839. GOTO 10601
  840. 10777 coinage = 1
  841. PRINT "     To your surprise, three dollars worth of quarters rolls out of the"
  842. PRINT "payphone."
  843. m = m + 3
  844. GOTO 10601
  845.  
  846. 20000  PRINT "To go into the mall, you'd best be gettin' the registered version of this"
  847. PRINT "here game!!!"
  848. PRINT "(Read THE INTRO!!! for more info."
  849.  
  850. GOTO 10530
  851.  
  852.  
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860. END SUB
  861.  
  862.