home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / fun.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  754b  |  23 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 come across an Ammo shop, it is filled with large guns and rockets.....just then a Zombie approaches....You have a large choice of weapons with which to destroy him..'
  9. echo' Will you use the ShotGun, HandGun, Rocket or Grenade?'
  10.     pull answer
  11.    Select
  12.     When answer = shotgun then cmd = 'killed.rexx'
  13.     When answer = handgun then cmd = 'killed.rexx'
  14.     When answer = rocket then cmd = 'killed.rexx'
  15.     When answer = Grenade then cmd = 'grenade.rexx'
  16.     When answer = Shit then cmd = 'savini.rexx'
  17.     Otherwise cmd = 'fun.rexx'
  18.    End
  19.    Address command 'rx Dawn:bits/'cmd
  20.    
  21.   
  22.  
  23.