home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / nor.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  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. echo 'This direction leads out of a fire exit and outside the shopping Mall...it is the place where you first entered the Mall and you can see the glass which you broke to get into the store room...'
  8.    echo 'Which way? Into the store room where you started your adventure or ontop of the building?'
  9.     pull answer
  10.    Select
  11.     When answer = Store room then cmd = 'righty.rexx'
  12.     When answer = Store then cmd = 'righty.rexx'
  13.     When answer = Ontop of the building then cmd = 'outside.rexx'
  14.     When answer = ontop then cmd = 'outside.rexx'
  15.     When answer = top then cmd = 'outside.rexx'
  16.     When answer = building then cmd = 'outside.rexx'
  17.     When answer = Up then cmd = 'outside.rexx'
  18.     When answer = room then cmd = 'righty.rexx'
  19.     When answer = Shit then cmd = 'savini.rexx'
  20.     Otherwise cmd = 'nor.rexx'
  21.    End
  22.    Address command 'rx Dawn:bits/'cmd
  23.