home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / eas.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  27 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 into the control room, here you can change the music which is being played all through the mall and even control shop window displays'
  8.    echo 'You reach forward and change the music...'
  9.    echo '[PUSH RETURN]'
  10.     pull answer
  11.    Address command 'rx Dawn:bits/quit.rexx'
  12.    Address command 'run >nil: dawn:bits/zombieplayer dir=dawn:bits/ play=zombietune2 nowindow'
  13.    echo 'You head back to the previous room and the Zombies are closing in....'
  14.    echo 'Which way will you go? North, South, West?'
  15.    pull answer
  16.    Select
  17.     When answer = North then cmd = 'Nor.rexx'
  18.     When answer = N then cmd = 'Nor.rexx'
  19.     When answer = South then cmd = 'Sou.rexx'
  20.     When answer = S then cmd = 'Sou.rexx'
  21.     When answer = West then cmd = 'Wes.rexx'
  22.     When answer = W then cmd = 'Wes.rexx'
  23.     When answer = Shit then cmd = 'savini.rexx'
  24.     Otherwise cmd = 'eas.rexx'
  25.    End
  26.    Address command 'rx Dawn:bits/'cmd
  27.