home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / notcured.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  695b  |  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 'You were on the verge of recovery but slowly you begin to feel groggy and sluggish. Seconds later you are a flesh eating zombie again, your craving for human flesh grows...'
  9. echo 'east or west?'
  10.    pull answer
  11.    Select
  12.     When answer = East then cmd = 'east.rexx'
  13.     When answer = E then cmd = 'east.rexx'
  14.     When answer = West then cmd = 'west.rexx'
  15.     When answer = W then cmd = 'west.rexx'
  16.     When answer = Shit then cmd = 'savini.rexx'
  17.     Otherwise cmd = 'notcured.rexx'
  18.    End
  19.    Address command 'rx Dawn:bits/'cmd
  20.  
  21.    
  22.   
  23.  
  24.