home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / righty.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  23 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. echo 'You drop down into the store room which you started in, outside the store room now the zombies are congregating, the only way out is to go back into the vents and drop down into the leisure section or to go out the way in which you entered the shopping mall, the window...'
  8.    echo 'Which way? The vents or the Window leading outside..?'
  9.     pull answer
  10.    Select
  11.     When answer = Vents then cmd = 'vents.rexx'
  12.     When answer = V then cmd = 'vents.rexx'
  13.     When answer = Back then cmd = 'lefty.rexx'
  14.     When answer = B then cmd = 'lefty.rexx'
  15.     When answer = Window then cmd = 'outside.rexx'
  16.     When answer = W then cmd = 'Outside.rexx'
  17.     When answer = Outside then cmd = 'Outside.rexx'
  18.     When answer = O then cmd = 'Outside.rexx'
  19.     When answer = Shit then cmd = 'savini.rexx'
  20.     Otherwise cmd = 'lefty.rexx'
  21.    End
  22.    Address command 'rx Dawn:bits/'cmd
  23.