home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / sock2.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  810b  |  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 'Well done the cannister burst open in the heating system...now all you have to do is escape from this shopping center..'
  8. echo '[PUSH RETURN]'
  9.  pull answer
  10. echo 'The green gas begins to get into your system and you feel tired....you want to lie down all the time....you are very tired.....'
  11. echo 'Lie Down? Yes or No?'
  12.   pull answer
  13.    Select
  14.     When answer = Yes then cmd = 'haha.rexx'
  15.     When answer = Y then cmd = 'haha.rexx'
  16.     When answer = No then cmd = 'sock.rexx'
  17.     When answer = N then cmd = 'sock.rexx'
  18.     When answer = Shit then cmd = 'savini.rexx'
  19.     Otherwise cmd = 'sock2.rexx'
  20.    End
  21.    Address command 'rx Dawn:bits/'cmd
  22.  
  23.  
  24.  
  25.   
  26.  
  27.