home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / nerth.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  807b  |  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.  
  8. say 'You head north and find yourself in a warm room, there is a strange smell in the room......suddenly you turn around to see one of the most horrific sites youve ever seen!'
  9.       echo '[PUSH RETURN]'
  10.     pull answer
  11.    Address command 'Dawn:bits/vt dawn:bits/discusting >nil:'
  12.    echo 'Which way? Left or Right?'
  13.    pull answer
  14.    Select
  15.     When answer = Left then cmd = 'zombod.rexx'
  16.     When answer = Right then cmd = 'roght.rexx'
  17.     When answer = Shit then cmd = 'savini.rexx'
  18.     When answer = L then cmd = 'zombod.rexx'
  19.     When answer = R then cmd = 'roght.rexx'
  20.     Otherwise cmd = 'Nerth.rexx'
  21.    End
  22.    Address command 'rx Dawn:bits/'cmd
  23.