home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / vents.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  829b  |  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 are in the ventilation system...its getting quite hot in here.....'
  9.   echo 'which way now? Left or Right? There is also an escalator nearby...'
  10.     pull answer
  11.    Select
  12.     When answer = Left then cmd = 'lefty.rexx'
  13.     When answer = right then cmd = 'righty.rexx'
  14.     When answer = L then cmd = 'lefty.rexx'
  15.     When answer = R then cmd = 'righty.rexx'
  16.     When answer = Shit then cmd = 'savini.rexx'
  17.     When answer = escalator then cmd = 'escalator.rexx'
  18.     When answer = goto escalator then cmd = 'escalator.rexx'
  19.     When answer = use escalator then cmd = 'escalator.rexx'
  20.     Otherwise cmd = 'vents.rexx'
  21.    End
  22.    Address command 'rx Dawn:bits/'cmd
  23.    
  24.   
  25.  
  26.