Advertisement
kd2bwzgen

Minigame Mastery

Nov 16th, 2017
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1 gosub 1000
  2. 10 print "Minigame Mastery"
  3. 20 print "----------------"
  4. 30 print "1 - Hangman"
  5. 40 print "2 - lol"
  6. 50 print "3 - wow"
  7. 60 input "Pick a game:";a
  8. 70 if a>3 or a<1 then print "?REENTER":goto 60
  9. 80 on a goto 90,100,110
  10. 90 goto 120
  11. 100 print "NYI":goto 30
  12. 110 print "NYI":goto 30
  13. 120 gosub 1000
  14. 130 print "Hangman v0.1":print "by MineRobber9000":print "for inclusion in Minigame Mastery":print "---------------------------------"
  15. 140 input "Have a friend enter a word:",word$
  16. 145 dim worda$(len(word$))
  17. 150 for i=1 to len(word$):let worda$(i) = left$(word$,i,1):next i
  18. 999 end
  19. 1000 for i=1 to 40:print "":next i:return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement