home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / zero.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  849b  |  25 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 'A discusting, decayed zombie wearing a diy belt leaps out at you....in his diy belt he has 2 items which you could kill him with. Which do you choose?'
  9.       echo 'screwdriver or ruler?'
  10.     pull answer
  11.       Select
  12.     When answer = screwdriver then cmd = 'screw.rexx'
  13.     When answer = ruler then cmd = 'ruler.rexx'
  14.     When answer = use screw driver then cmd = 'screw.rexx'
  15.     When answer = use ruler then cmd = 'ruler.rexx'
  16.     When answer = kill him with screwdriver then cmd = 'screw.rexx'
  17.     When answer = kill him with ruler then cmd = 'ruler.rexx'
  18.     When answer = Shit then cmd = 'savini.rexx'
  19.     Otherwise cmd = 'Zero.rexx'
  20.    End
  21.    Address command 'rx Dawn:bits/'cmd
  22.  
  23.  
  24.    
  25.