home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / rod2.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  716b  |  21 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 grab the metal Rod and smash the Zombies head off with one blow. Its corpse falls to the ground and you see a hoard of flesh eating zombies coming towards you...'
  9. echo 'North & South are the only safe options...which way?'
  10.     pull answer
  11.    Select
  12.     When answer = North then cmd = 'shop.rexx'
  13.     When answer = South then cmd = 'fun.rexx'
  14.     When answer = N then cmd = 'shop.rexx'
  15.     When answer = S then cmd = 'fun.rexx'
  16.     When answer = Shit then cmd = 'savini.rexx'
  17.     Otherwise cmd = 'Rod2.rexx'
  18.    End
  19.    Address command 'rx Dawn:bits/'cmd
  20.  
  21.