home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / sock.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  811b  |  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 'You run down the corridor shooting on coming zombies with your gun...and dodging lunging attacks from their scabby hands.....A large door blocks your way...'
  8. echo '[PUSH RETURN]'
  9.  pull answer
  10. echo 'You pull out a rocket and prepare to fire it...it could be risky....do you really want to do this?'
  11. echo 'Yes or No?'
  12.   pull answer
  13.    Select
  14.     When answer = Yes then cmd = 'sock3.rexx'
  15.     When answer = Y then cmd = 'sock3.rexx'
  16.     When answer = No then cmd = 'haha2.rexx'
  17.     When answer = N then cmd = 'haha2.rexx'
  18.     When answer = Shit then cmd = 'savini.rexx'
  19.     Otherwise cmd = 'sock.rexx'
  20.    End
  21.    Address command 'rx Dawn:bits/'cmd
  22.  
  23.  
  24.  
  25.   
  26.  
  27.