home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / west.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  647b  |  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 'A human pops out and shoots you in the chest....you crawl along with your vital organs hanging out of your body.....which way?'
  9. echo 'east or west?'
  10.    pull answer
  11.    Select
  12.     When answer = West then cmd = 'cured.rexx'
  13.     When answer = W then cmd = 'cured.rexx'
  14.     When answer = East then cmd = 'food.rexx'
  15.     When answer = E then cmd = 'food.rexx'
  16.     When answer = Shit then cmd = 'savini.rexx'
  17.     Otherwise cmd = 'west.rexx'
  18.    End
  19.    Address command 'rx Dawn:bits/'cmd
  20.  
  21.    
  22.   
  23.  
  24.