home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / north1.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  962b  |  27 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. wait 1
  8.  
  9.  
  10. say 'You walk along the tiled surface and notice a Zombie coming towards you. It seems to be very
  11.  hungry and wouldnt hesitate about eating you. There are 2 objects near by...in the spur of the moment you cant decide
  12.  which one to pick up, the shotgun or the metalRod....quick which one will it be??'
  13.       echo 'ShotGun or MetalRod'
  14.     pull answer
  15.    Select
  16.     When answer = ShotGun then cmd = 'Gun1.rexx'
  17.     When answer = MetalRod then cmd = 'Rod2.rexx'
  18.     When answer = Metal Rod then cmd = 'Rod2.rexx'
  19.     When answer = Get ShotGun then cmd = 'Gun1.rexx'
  20.     When answer = Get MetalRod then cmd = 'Rod2.rexx'
  21.     When answer = Get Metal Rod then cmd = 'Rod2.rexx'
  22.     When answer = Shit then cmd = 'savini.rexx'
  23.     Otherwise cmd = 'North1.rexx'
  24.    End
  25.    Address command 'rx Dawn:bits/'cmd
  26.  
  27.