Advertisement
Guest User

Untitled

a guest
Oct 4th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. -- Perpetual Quest
  2. Quest: JHPQ013
  3. DisplayName: Turning the Tables
  4. -- Message panels
  5. QRC:
  6.  
  7. QuestorOffer: [1000]
  8. <ce> ERROR 1000 JHPQ013
  9.  
  10. RefuseQuest: [1001]
  11. <ce> ERROR 1001 JHPQ013
  12.  
  13. AcceptQuest: [1002]
  14. <ce> ERROR 1002 JHPQ013
  15.  
  16. QuestFail: [1003]
  17. <ce> ERROR 1003 JHPQ013
  18.  
  19. QuestComplete: [1004]
  20. <ce> Among your predator's belongings, you find
  21. <ce> a magical _reward_, which you take.
  22.  
  23. Message: 1010
  24. <ce> You take a note hanging from your enemy's pocket.
  25. <--->
  26. <ce> Your attacker had a loose note in hanging from
  27. <ce> a pocket, which you put into your pack.
  28.  
  29. Message: 1011
  30. _name1_,
  31.  
  32. Bring the %ra to me. Better alive, but okay if dead.
  33.  
  34. _name2_
  35. ___place1_
  36.  
  37. Message: 1012
  38. <ce> You notice a note among _name2_'s
  39. <ce> belongings, which you put into your pack.
  40. <--->
  41. <ce> _name2_ was carrying a small note.
  42. <ce> You put it among your belongings.
  43.  
  44. Message: 1013
  45. _name2_,
  46.  
  47. No more failures. No excuses. Meet your quota.
  48. We need bodies right now.
  49.  
  50. _name3_
  51. ___place2_
  52.  
  53. Message: 1014
  54. <ce> You find another letter on
  55. <ce> _name3_'s corpse, which you take.
  56. <--->
  57. <ce> _name3_ was also carrying
  58. <ce> a letter, which you take.
  59.  
  60. Message: 1015
  61. _name3_,
  62.  
  63. You're still short _num_ bodies for this month.
  64. We both know what's gonna happen if I run out.
  65.  
  66. _name4_
  67. ___place3_
  68.  
  69. QBN:
  70. Clock _timer_ 60.00:00
  71.  
  72. Item _reward_ magic_item
  73. Item _num_ gold range 2 to 4
  74. Item _note1_ letter used 1011
  75. Item _note2_ letter used 1013
  76. Item _note3_ letter used 1015
  77.  
  78. Person _name1_ group Resident1
  79. Person _name2_ group Resident2
  80. Person _name3_ group Resident3
  81. Person _name4_ group Resident3
  82.  
  83. Foe _enemy_ is Acrobat
  84. Foe _boss_ is Nightblade
  85. Foe _chief_ is Nightblade
  86. Foe _lord_ is Nightblade
  87.  
  88. Place _place1_ remote tavern
  89. Place _place2_ remote house1
  90. Place _place3_ remote house2
  91.  
  92. -- Quest start-up:
  93. start timer _timer_
  94. create foe _enemy_ every 1 minutes 1 times with 100% success
  95.  
  96. _slain1_ task:
  97. killed _enemy_
  98. pick one of _victory_ _step2_
  99.  
  100. _step2_ task:
  101. say 1010
  102. get item _note1_
  103. place foe _boss_ at _place1_
  104.  
  105. _slain2_ task:
  106. killed _boss_
  107. pick one of _victory_ _step3_
  108.  
  109. _step3_ task:
  110. say 1012
  111. get item _note2_
  112. place foe _chief_ at _place2_
  113.  
  114. _slain3_ task:
  115. killed _chief_
  116. pick one of _victory_ _step4_
  117.  
  118. _step4_ task:
  119. say 1014
  120. get item _note3_
  121. place foe _lord_ at _place3_
  122.  
  123. _slain4_ task:
  124. killed _lord_
  125. start task _victory_
  126.  
  127. _victory_ task:
  128. give pc _reward_
  129. end quest
  130.  
  131. _timer_ task:
  132. end quest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement