home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / escalator.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  581b  |  20 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 go up the escalator onto the top floor of the mall...'
  9.       echo 'left or right?'
  10.     pull answer
  11.    Select
  12.     When answer = Left then cmd = 'nth.rexx'
  13.     When answer = Right then cmd = 'roght.rexx'
  14.     When answer = L then cmd = 'nth.rexx'
  15.     When answer = R then cmd = 'roght.rexx'
  16.     When answer = Shit then cmd = 'savini.rexx'
  17.     Otherwise cmd = 'escalator.rexx'
  18.    End
  19.    Address command 'rx Dawn:bits/'cmd
  20.