home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / screw.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  846b  |  30 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 drive the screw driver into the Zombies ear and kill him almost instantly.....you head along the corridor further...'
  9.       echo 'you can go North, South, East or West'
  10.     pull answer
  11.    Select
  12.     When answer = North then cmd = 'Nor.rexx'
  13.     When answer = N then cmd = 'Nor.rexx'
  14.     When answer = South then cmd = 'Sou.rexx'
  15.     When answer = S then cmd = 'Sou.rexx'
  16.     When answer = East then cmd = 'Eas.rexx'
  17.     When answer = E then cmd = 'Eas.rexx'
  18.     When answer = West then cmd = 'Wes.rexx'
  19.     When answer = W then cmd = 'Wes.rexx'
  20.     When answer = Shit then cmd = 'savini.rexx'
  21.     Otherwise cmd = 'screw.rexx'
  22.    End
  23.    Address command 'rx Dawn:bits/'cmd
  24.  
  25.  
  26.    
  27.  
  28.  
  29.    
  30.