home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / dead.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  914b  |  25 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. wait 1
  8.  
  9.  
  10. say 'You turn a corner and accidentally slip on a disembodied limb which sends you hurtling off the balcony.
  11.  One of the last things you feel is a sharp wire ripping through your waist and then seconds later that same wire
  12. falling ontop of you followed by lots of lighting equipment. A Steel sheet misses your face by 2 inches and as
  13.  you stuggle to breath the metal shows your reflection.'
  14.       echo 'Do you look at the reflection? Yes, No, Maybe So'
  15.     pull answer
  16.    Select
  17.     When answer = Yes then cmd = 'NoLegsR.rexx'
  18.     When answer = No then cmd = 'NoLegs.rexx'
  19.     When answer = Maybe So then cmd = 'NoLegsR.rexx'
  20.     When answer = Shit then cmd = 'savini.rexx'
  21.     Otherwise cmd = 'dead.rexx'
  22.    End
  23.    Address command 'rx Dawn:bits/'cmd
  24.  
  25.