home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / killed.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  26 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 watch in glee as parts of the Zombie splatter off the walls and his head catapults into pile of knives in the corner. The zombies body stumbles around headless and you pull
  9.  out a pistol to finish off the horrific creature. As you shoot it in the chest it collapses in a pool of blood. You stock up on guns and ammo and decide to climb through the vent shafts.
  10.  You are very safe in here because the zombies would never be able to get in....crawling along you see a top view of the entire shopping complex. You can see at least 200 Zombies which are still
  11.   roaming around aimlessly looking for their next unfortunate victim.'
  12.   echo 'which way now? Left or Right?'
  13.     pull answer
  14.    Select
  15.     When answer = Left then cmd = 'lefty.rexx'
  16.     When answer = right then cmd = 'righty.rexx'
  17.     When answer = L then cmd = 'lefty.rexx'
  18.     When answer = R then cmd = 'righty.rexx'
  19.     When answer = Shit then cmd = 'savini.rexx'
  20.     Otherwise cmd = 'killed.rexx'
  21.    End
  22.    Address command 'rx Dawn:bits/'cmd
  23.    
  24.   
  25.  
  26.