home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / food2.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  825b  |  24 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 find a second corpse not far around the corner and begin to rip off sections of flesh when you hear
  9.  movement above, just then a black man wearing a blue police uniform leaps out and blasts your head with a shotgun.
  10. Being a Zombie you manage to stumble round the corner before the second shot completely detaches your head....'
  11. echo 'Attack him? Yes, No, Maybe So'
  12.  pull answer
  13.    Select
  14.     When answer = Yes then cmd = 'shot.rexx'
  15.     When answer = No then cmd = 'cured.rexx'
  16.     When answer = Maybe So then cmd = 'dead.rexx'
  17.     When answer = Shit then cmd = 'savini.rexx'
  18.     Otherwise cmd = 'Food2.rexx'
  19.    End
  20.    Address command 'rx Dawn:bits/'cmd
  21.    
  22.   
  23.  
  24.