home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / food.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  32 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 stumble as fast as your zombified limbs will take you and soon come across a human corpse surrounded by other ghoulish
  9.  flesh eaters. You reach out your scabby hands and begin to eat a portion of the corpses left leg, the taste is meaty and has a
  10.   sort of wriggly texture. You feel like you are eating a prime Gammon steak and continue to indulge yourself. A niggling memory of
  11.   past life keeps teeling you it is wrong from the back of your mind but none of that matters. All you can think of is when this flesh
  12.   runs out, where will you get more....'
  13.     echo '[PUSH RETURN]'
  14.     pull answer
  15.     Address command 'Dawn:bits/VT Dawn:bits/half.gif >nil:'
  16.    echo 'which way now.....East, South, West'
  17.   pull answer
  18.    Select
  19.     When answer = East then cmd = 'cured.rexx'
  20.     When answer = South then cmd = 'Dead.rexx'
  21.     When answer = West then cmd = 'Food2.rexx'
  22.     When answer = E then cmd = 'cured.rexx'
  23.     When answer = S then cmd = 'Dead.rexx'
  24.     When answer = W then cmd = 'Food2.rexx'
  25.     When answer = Shit then cmd = 'savini.rexx'
  26.     Otherwise cmd = 'Food.rexx'
  27.    End
  28.    Address command 'rx Dawn:bits/'cmd
  29.    
  30.   
  31.  
  32.