home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / nth.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  3KB  |  70 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. echo 'You walk into a room which looks like a sort of torture chamber....a half breed of zombie and human approaches you...'
  8. echo '[PUSH RETURN]'
  9.  pull answer
  10.  address command 'rx dawn:bits/quit.rexx'
  11.     Address command 'run >nil: dawn:bits/zombieplayer dir=dawn:bits/ play=zombietune2 nowindow'
  12. echo 'He speaks.....hey human, get out of my home...I converted this place myself you know......he turns around and pushes a switch...'
  13. echo '[PUSH RETURN]'
  14.  pull answer
  15. echo ' The Door Slams shut behind you and the horrific hybrid walks up to you.....his bulging eyes and nose make your stomach churn.....You shouldnt have come into my sector bud....he says...'
  16. echo '[PUSH RETURN]'
  17.  pull answer
  18. echo 'Now youre going to pay...hahahah..cough cough.....he pushes another button and a glass cage is lowered down...he holds a gun to you and says get in...'
  19. echo '[PUSH RETURN]'
  20.  pull answer
  21. echo ' You climb into the glass cage and he uses a series of pulleys and levers to manouver you over a pit which is filled with zombies...'
  22. echo '[PUSH RETURN]'
  23.  pull answer
  24. echo ' he begins to lower you into the pit..this is sure death....'
  25. echo '[PUSH RETURN]'
  26.  pull answer
  27. echo 'you gonna plead with me bud.....get on your knees and beg scum...he orders'
  28. echo '[PUSH RETURN]'
  29.  pull answer
  30. echo ' You look down at your knees.....'
  31. echo '[PUSH RETURN]'
  32.  pull answer
  33. echo ' No Way! you shout... you have a couple of options although this does seem like death...'
  34. echo 'Will you say sorry and plead for your life, or will you hurl abuse at him, or will you rattle the cage and try to escape...?'
  35.  pull answer
  36.    Select
  37.     When answer = Say sorry and plead for my life then cmd = 'plead.rexx'
  38.     When answer = Hurl abuse at him then cmd = 'abuse.rexx'
  39.     When answer = Rattle cage and try to escape then cmd = 'rattle.rexx'
  40.     When answer = Say sorry and plead for life then cmd = 'plead.rexx'
  41.     When answer = Hurl abuse then cmd = 'abuse.rexx'
  42.     When answer = Rattle cage then cmd = 'rattle.rexx'
  43.     When answer = Say sorry plead for life then cmd = 'plead.rexx'
  44.     When answer = Hurl abuse him then cmd = 'abuse.rexx'
  45.     When answer = Rattle cage and escape then cmd = 'rattle.rexx'
  46.     When answer = sorry and plead for life then cmd = 'plead.rexx'
  47.     When answer = abuse him then cmd = 'abuse.rexx'
  48.     When answer = Rattle cage escape then cmd = 'rattle.rexx'
  49.     When answer = plead then cmd = 'plead.rexx'
  50.     When answer = abuse then cmd = 'abuse.rexx'
  51.     When answer = Rattle then cmd = 'rattle.rexx'
  52.     When answer = sorry then cmd = 'plead.rexx'
  53.     When answer = abuse him then cmd = 'abuse.rexx'
  54.     When answer = cage then cmd = 'rattle.rexx'
  55.     When answer = Say sorry and plead for life then cmd = 'plead.rexx'
  56.     When answer = Hurl abuse then cmd = 'abuse.rexx'
  57.     When answer = Rattle cage and escape then cmd = 'rattle.rexx'
  58.     When answer = sorry plead then cmd = 'plead.rexx'
  59.     When answer = insult then cmd = 'abuse.rexx'
  60.     When answer = Rattle cage then cmd = 'rattle.rexx'
  61.     When answer = Shit then cmd = 'savini.rexx'
  62.     Otherwise cmd = 'nth2.rexx'
  63.    End
  64.    Address command 'rx Dawn:bits/'cmd
  65.  
  66.  
  67.  
  68.  
  69.  
  70.