home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / seuth.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  28 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 'You walk down a dimly lit corridor and the smell of rotting flesh stings your nose, it gets stronger as you move forward and then suddnely a Zombie leaps out...What do you do to him?'
  9.       echo 'Headbutt Him, Kick Him, Rip his head off, Smack him around a bit '
  10.     pull answer
  11.    Select
  12.     When answer = Headbutt Him then cmd = 'zombod.rexx'
  13.     When answer = Kick Him then cmd = 'zombod.rexx'
  14.     When answer = Rip his head off then cmd = 'zombod.rexx'
  15.     When answer = Smack him around a bit then cmd = 'zombod.rexx'
  16.     When answer = headbutt then cmd = 'zombod.rexx'
  17.     When answer = kick then cmd = 'zombod.rexx'
  18.     When answer = rip then cmd = 'zombod.rexx'
  19.     When answer = rip head off then cmd = 'zombod.rexx'
  20.     When answer = smack him around a bit then cmd = 'zombod.rexx'
  21.     When answer = smack him then cmd = 'zombod.rexx'
  22.     When answer = smack him around then cmd = 'zombod.rexx'
  23.     When answer = Shit then cmd = 'savini.rexx'
  24.     Otherwise cmd = 'Seuth.rexx'
  25.    End
  26.    Address command 'rx Dawn:bits/'cmd
  27.  
  28.