home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / sausage.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  31 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. echo 'You stand around for a bit having some fun and using the blood pressure machine......what now?'
  9.     echo 'to the icerink, into the vents or up the escalator?'
  10.     pull answer
  11.    Select
  12.     When answer = icerink then cmd = 'ice.rexx'
  13.     When answer = rink then cmd = 'ice.rexx'
  14.     When answer = vents then cmd = 'vents.rexx'
  15.     When answer = back into the vents then cmd = 'vents.rexx'
  16.     When answer = back then cmd = 'vents.rexx'
  17.     When answer = into the vents then cmd = 'vents.rexx'
  18.     When answer = the vents then cmd = 'vents.rexx'
  19.     When answer = in the vents then cmd = 'vents.rexx'
  20.     When answer = escalator then cmd = 'escalator.rexx'
  21.     When answer = up the escalator then cmd = 'escalator.rexx'
  22.     When answer = e then cmd = 'escalator.rexx'
  23.     When answer = Shit then cmd = 'savini.rexx'
  24.     Otherwise cmd = 'sausage.rexx'
  25.    End
  26.    Address command 'rx Dawn:bits/'cmd
  27.  
  28.  
  29.  
  30.   
  31.