home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / zombod.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  637b  |  19 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 'The Zombie is old and as soon as you touch him his head falls off...followed by his neck...then suddenly lots of beetles emerge from the Zombies head and fly towards you... What do you do..?'
  9.       echo 'Run through the beetles? Wait?'
  10.     pull answer
  11.    Select
  12.     When answer = Run then cmd = 'run.rexx'
  13.     When answer = Wait then cmd = 'dwee.rexx'
  14.     When answer = Shit then cmd = 'savini.rexx'
  15.     Otherwise cmd = 'dwee.rexx'
  16.    End
  17.    Address command 'rx Dawn:bits/'cmd
  18.  
  19.