home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / gun1.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  29 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 grab the shotgun and line it up with the Zombies head, but wait!! There are no bullets!
  11.  Fumbling around for your last seconds as the flesh is torn from your body you ironically see an Ammo shop ahead of you, on your knees
  12.  you crawl to it..But its too late, by the time you reach the shop you forget why you wanted to be there
  13.  and turn around to go and quench this unsatisfiable urge for human flesh.'
  14.  say 'Even though you are a zombie you still have some control on your mind, but bearing in mind that your aim
  15.  is no longer to escape from the zombies, it is now to get human flesh, where do you go?'
  16.       echo 'Left or Right'
  17.     pull answer
  18.    Select
  19.     When answer = Left then cmd = 'Dead.rexx'
  20.     When answer = L then cmd = 'Dead.rexx'
  21.     When answer = Right then cmd = 'Food.rexx'
  22.     When answer = R then cmd = 'Food.rexx'
  23.     When answer = up then cmd = 'Dead.rexx'
  24.     When answer = Shit then cmd = 'savini.rexx'
  25.     Otherwise cmd = 'Gun1.rexx'
  26.    End
  27.    Address command 'rx Dawn:bits/'cmd
  28.  
  29.