home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / shop.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  769b  |  24 lines

  1. /*
  2. \\  Dawn Of The Dead RPG  - By Gareth Murfin
  3. //  Game created in Arexx - ver$  Dawn Of The Dead RPG v1.0a
  4. \\
  5. */
  6. address command 'Dawn:bits/style R 2'
  7.  
  8. say 'you find yourself in a computer shop....which system would you like to play on?'
  9. echo 'PC, Amiga, SNES, Playstation, Saturn, N64 ?'
  10.     pull answer
  11.    Select
  12.     When answer = PC then cmd = 'pc.rexx'
  13.     When answer = Amiga then cmd = 'Amiga.rexx'
  14.     When answer = SNES then cmd = 'snes.rexx'
  15.     When answer = playstation then cmd = 'psx.rexx'
  16.     When answer = Saturn then cmd = 'saturn.rexx'
  17.     When answer = N64 then cmd = 'n64.rexx'
  18.     When answer = psx then cmd = 'psx.rexx'
  19.     When answer = Shit then cmd = 'savini.rexx'
  20.     Otherwise cmd = 'shop.rexx'
  21.    End
  22.    Address command 'rx Dawn:bits/'cmd
  23.  
  24.