home *** CD-ROM | disk | FTP | other *** search
/ The Big Mouth 18 / Big_Mouth_The_18_1998_-_Side_B.d64 / menu (.txt) < prev    next >
Commodore BASIC  |  2023-02-26  |  1KB  |  50 lines

  1. 1 rem"          "bm eyes only!(NULL)
  2. 2 poke 808,234:poke 53280,0:poke 53281,0
  3. 4 fort=1 to 500:next
  4. 6 print"[147][155]"tab(7)"the big mouth - main menu"
  5. 8 fort=1 to 2000:next
  6. 10 print"[147]"
  7. 15 fort=1 to 500:next
  8. 20 printtab(7)"the big mouth - main menu"
  9. 30 print"a - davids midnight magic"
  10. 31 print"b - night mission"
  11. 32 print"c - 3-d pinball"
  12. 33 print"d - pinball wizard"
  13. 34 print"e - slamball"
  14. 35 print"f - macadam bumper"
  15. 36 print"g - funstuff pinball"
  16. 37 print"h - skidmarks prevew"
  17. 50 print"pick a program to load (a-h) ?"
  18. 55 get a$:if a$="" then 55
  19. 60 a=asc(a$):if a-64<1 or a-64>8 then 55
  20. 65 print""tab(15)" loading "
  21. 70 forx=49152 to 49170:ready:poke x,y:nextx
  22. 75 sys 49152
  23. 76 data 120,169,013,141,040,003,169,192
  24. 77 data 141,041,003,088,096,238,032,208
  25. 78 data 076,237,246
  26. 80 on a-64 goto 101,102,103,104,105,110,120,106
  27. 99 :
  28. 101 load"davids mid.magic",8,1
  29. 102 load" night mission  ",8,1
  30. 103 load"  3-d pinball   ",8,1
  31. 104 load" pinball wizard ",8,1
  32. 105 load"    slamball    ",8,1
  33. 106 load"skidmarks prevew",8,1
  34. 109 :
  35. 110 print"macadam bumper instructions"
  36. 111 print"when loaded, press f1[146] to exit to the"
  37. 112 print"game menu, then r[146] to define the keys"
  38. 113 print"(or see the defualt setup) and finally  p[146] to play the game!"
  39. 115 load" macadam bumper ",8,1
  40. 119 :
  41. 120 print"funstall pinball - joystick in port 2"
  42. 121 print"up & down - alter plunger tension"
  43. 122 print"left      - left flipper"
  44. 123 print"right     - right flipper"
  45. 124 print"fire      - release ball"
  46. 125 print"f3        - change table colors"
  47. 126 print"f5        - change number of players"
  48. 127 print"f7        - start game"
  49. 129 load"funstuff pinball",8,1
  50.