home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / cured.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  850b  |  24 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 'As you walk past a deserted furniture shop you see a reflection of your zombified face and begin to remember life as a human....the more you remember the more human you feel.
  9.  You concentrate and slowly your head becomes clearer...Now you just need something to wake yourself up with...'
  10.  echo 'Dip your head in the water fountain? Yes or No?'
  11.     pull answer
  12.    Select
  13.     When answer = Yes then cmd = 'cured2.rexx'
  14.     When answer = No then cmd = 'notcured.rexx'
  15.     When answer = Y then cmd = 'cured2.rexx'
  16.     When answer = N then cmd = 'notcured.rexx'
  17.     When answer = Shit then cmd = 'savini.rexx'
  18.     Otherwise cmd = 'cured.rexx'
  19.    End
  20.    Address command 'rx Dawn:bits/'cmd
  21.    
  22.   
  23.  
  24.