home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / south1.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  28 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 walk past the fountains and escalators which are now fully powered up, In the fountains are
  9.  zombies scraping around trying to pick up the money for some reason, on the escalators the zombies
  10.   try their hardest to walk towards you but the rotating floor causes them to fall over. You also see
  11.    zombies trying to eat perfume bottles and staring at shop manakins with a dulled facination. Which way will you go?'
  12.       echo 'North, East, South, West?'
  13.     pull answer
  14.    Select
  15.     When answer = North then cmd = 'Nerth.rexx'
  16.     When answer = East then cmd = 'Eest.rexx'
  17.     When answer = South then cmd = 'Seuth.rexx'
  18.     When answer = West then cmd = 'Wast.rexx'
  19.     When answer = N then cmd = 'Nerth.rexx'
  20.     When answer = E then cmd = 'Eest.rexx'
  21.     When answer = S then cmd = 'Seuth.rexx'
  22.     When answer = W then cmd = 'Wast.rexx'
  23.     When answer = Shit then cmd = 'savini.rexx'
  24.     Otherwise cmd = 'South1.rexx'
  25.    End
  26.    Address command 'rx Dawn:bits/'cmd
  27.  
  28.