home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / nth2.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  3KB  |  60 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 'Stop being silly will you? you are in mortal danger!...'
  8. echo '[PUSH RETURN]'
  9.  pull answer
  10. echo ' No Way! you shout... you have a couple of options although this does seem like death...'
  11. echo 'Will you say sorry and plead for your life, or will you hurl abuse at him, or will you rattle the cage and try to escape...?'
  12.  pull answer
  13.    Select
  14.     When answer = Say sorry and plead for my life then cmd = 'plead.rexx'
  15.     When answer = Hurl abuse at him then cmd = 'abuse.rexx'
  16.     When answer = Rattle cage and try to escape then cmd = 'rattle.rexx'
  17.     When answer = Say sorry and plead for life then cmd = 'plead.rexx'
  18.     When answer = Hurl abuse then cmd = 'abuse.rexx'
  19.     When answer = Rattle cage then cmd = 'rattle.rexx'
  20.     When answer = Say sorry plead for life then cmd = 'plead.rexx'
  21.     When answer = Hurl abuse him then cmd = 'abuse.rexx'
  22.     When answer = Rattle cage and escape then cmd = 'rattle.rexx'
  23.     When answer = sorry and plead for life then cmd = 'plead.rexx'
  24.     When answer = abuse him then cmd = 'abuse.rexx'
  25.     When answer = Rattle cage escape then cmd = 'rattle.rexx'
  26.     When answer = plead then cmd = 'plead.rexx'
  27.     When answer = abuse then cmd = 'abuse.rexx'
  28.     When answer = Rattle then cmd = 'rattle.rexx'
  29.     When answer = sorry then cmd = 'plead.rexx'
  30.     When answer = abuse him then cmd = 'abuse.rexx'
  31.     When answer = cage then cmd = 'rattle.rexx'
  32.     When answer = Say sorry and plead for life then cmd = 'plead.rexx'
  33.     When answer = Hurl abuse then cmd = 'abuse.rexx'
  34.     When answer = Rattle cage and escape then cmd = 'rattle.rexx'
  35.     When answer = sorry plead then cmd = 'plead.rexx'
  36.     When answer = insult then cmd = 'abuse.rexx'
  37.     When answer = Rattle cage then cmd = 'rattle.rexx'
  38.     When answer = Shit then cmd = 'savini.rexx'
  39.     When answer = Say sorry and plead for my life then cmd = 'plead.rexx'
  40.     When answer = Hurl abuse at him then cmd = 'abuse.rexx'
  41.     When answer = Rattle cage and try to escape then cmd = 'rattle.rexx'
  42.     When answer = Say sorry and plead for life then cmd = 'plead.rexx'
  43.     When answer = Hurl abuse then cmd = 'abuse.rexx'
  44.     When answer = Rattle cage then cmd = 'rattle.rexx'
  45.     When answer = Say sorry plead for life then cmd = 'plead.rexx'
  46.     When answer = Hurl abuse him then cmd = 'abuse.rexx'
  47.     When answer = Rattle cage and escape then cmd = 'rattle.rexx'
  48.     When answer = sorry and plead for life then cmd = 'plead.rexx'
  49.     When answer = abuse him then cmd = 'abuse.rexx'
  50.     When answer = Rattle cage escape then cmd = 'rattle.rexx'
  51.     When answer = Shit then cmd = 'savini.rexx'
  52.     Otherwise cmd = 'nth2.rexx'
  53.    End
  54.    Address command 'rx Dawn:bits/'cmd
  55.  
  56.  
  57.  
  58.  
  59.  
  60.