Advertisement
Guest User

Untitled

a guest
Jul 12th, 2018
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 10 PRINT "*---TRS-80 VirusBuster--Version 2.13a-*"
  2. 30 PRINT "*------Copyright 1982 Froggosoft------*"            
  3. 47 PRINT                 "Main Menu"
  4. 50 PRINT "1-Scan Machine | 2-About |     Reserved
  5. 66 PRINT "3-How to Pay   | 4-Exit  |     Reserved
  6. 68 GOTO 500
  7. 70 IF A$ = "Y" OR A$ = "y" THEN GOTO 90
  8. 80 IF A$ = "N" OR A$ = "n" THEN GOTO 170
  9. 90 INPUT "This may take a bit.  Proceed?(Y/N)"; C$
  10. 100 IF C$ = "Y" OR C$ = "y" THEN GOTO 120
  11. 110 IF C$ = "N" OR C$ = "n" THEN GOTO 160
  12. 120 FOR X=1 TO 100
  13. 130 PRINT "."
  14. 140 NEXT X
  15. 150 GOTO 200
  16. 160 PRINT "Your device will not be scanned."
  17. 170 INPUT "Exit to main menu? (Y/N)"; B$
  18. 180 IF B$ = "N" OR B$ = "n" THEN GOTO 220
  19. 190 IF B$ = "Y" OR B$ = "y" THEN GOTO 47
  20. 200 PRINT "Your machine is clean!"
  21. 210 GOTO 300
  22. 220 PRINT "Run this program when needed!  Goodbye!"
  23. 230 END
  24. 300 INPUT "Scan again? (Y/N)"; AA$
  25. 310 IF AA$ = "Y" OR AA$ = "y" THEN GOTO 400
  26. 320 IF AA$ = "N" OR AA$ = "n" THEN GOTO 170
  27. 400 PRINT "This machine is already clean!"
  28. 410 INPUT "Are you sure? (Y/N)"; BB$
  29. 420 IF BB$ = "Y" OR BB$ = "y" THEN GOTO 120
  30. 430 IF BB$ = "N" OR BB$ = "n" THEN GOTO 200
  31. 500 INPUT "Choose a number"; CC$
  32. 510 IF CC$ = "1" THEN GOTO 90
  33. 520 IF CC$ = "2" THEN GOTO 550
  34. 525 IF CC$ = "3" THEN GOTO 600
  35. 530 IF CC$ = "4" THEN GOTO 220
  36. 550 PRINT "TRS-80 VirusBuster build 1789-712"
  37. 560 PRINT "(C) 1982 Froggosoft"
  38. 570 PRINT "Programmed in Maine by:
  39. 580 PRINT "Steve Maguire"
  40. 590 GOTO 650
  41. 600 PRINT "This program is not freeware.  If you"
  42. 610 PRINT "like it and would like to support"
  43. 620 PRINT "VirusBuster, send $0.99 to 633"
  44. 630 PRINT "Maleva Street, Portland, Maine."  
  45. 640 PRINT "Thank you!"
  46. 650 INPUT "Return to menu"; RM$
  47. 660 IF RM$ = "Y" OR RM$ = "y" THEN GOTO 47
  48. 670 IF RM$ = "N" OR RM$ = "n" THEN GOTO 650
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement