home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / roght.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  1KB  |  27 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 'A zombie crawls towards you covered in blood. It looks innocent even though it is covered in blood. You begin to get strange thoughts... maybe this zombie could be
  9.  brought back to being human you think for a brief second...'
  10.       echo 'Try and revive the zombie or kill it?'
  11.     pull answer
  12.    Select
  13.     When answer = revive then cmd = 'eddy.rexx'
  14.     When answer = kill then cmd = 'zib.rexx'
  15.     When answer = revive it then cmd = 'eddy.rexx'
  16.     When answer = kill it then cmd = 'zib.rexx'
  17.     When answer = Shit then cmd = 'savini.rexx'
  18.     When answer = revive zombie then cmd = 'eddy.rexx'
  19.     When answer = kill zombie then cmd = 'zib.rexx'
  20.     When answer = revive the zombie then cmd = 'eddy.rexx'
  21.     When answer = kill the zombie then cmd = 'zib.rexx'
  22.     When answer = try and revive the zombie then cmd = 'eddy.rexx'
  23.     When answer = kill zombie now then cmd = 'zib.rexx'
  24.     Otherwise cmd = 'escalator.rexx'
  25.    End
  26.    Address command 'rx Dawn:bits/'cmd
  27.