SagaOfTheAdventurer.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package quests.SagasScripts;
  16. /**
  17. * @author Emperorc
  18. */
  19. public class SagaOfTheAdventurer extends SagasSuperClass
  20. {
  21. public static String qn1 = "79_SagaOfTheAdventurer";
  22. public static int qnu = 79;
  23. public static String qna = "Saga of the Adventurer";
  24. public SagaOfTheAdventurer()
  25. {
  26. super(qnu, qn1, qna);
  27. NPC = new int[]
  28. {
  29. 31603,
  30. 31584,
  31. 31579,
  32. 31615,
  33. 31619,
  34. 31646,
  35. 31647,
  36. 31651,
  37. 31654,
  38. 31655,
  39. 31658,
  40. 31616
  41. };
  42. Items = new int[]
  43. {
  44. 7080,
  45. 7516,
  46. 7081,
  47. 7494,
  48. 7277,
  49. 7308,
  50. 7339,
  51. 7370,
  52. 7401,
  53. 7432,
  54. 7102,
  55. 0
  56. };
  57. Mob = new int[]
  58. {
  59. 27299,
  60. 27228,
  61. 27302
  62. };
  63. qn = qn1;
  64. classid = new int[]
  65. {
  66. 93
  67. };
  68. prevclass = new int[]
  69. {
  70. 0x08
  71. };
  72. X = new int[]
  73. {
  74. 119518,
  75. 181205,
  76. 181215
  77. };
  78. Y = new int[]
  79. {
  80. -28658,
  81. 36676,
  82. 36676
  83. };
  84. Z = new int[]
  85. {
  86. -3811,
  87. -4816,
  88. -4812
  89. };
  90. Text = new String[]
  91. {
  92. "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!",
  93. "... Oh ... good! So it was ... let's begin!",
  94. "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!",
  95. "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!",
  96. "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...",
  97. "Why do you interfere others' battles?",
  98. "This is a waste of time.. Say goodbye...!",
  99. "...That is the enemy",
  100. "...Goodness! PLAYERNAME you are still looking?",
  101. "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.",
  102. "Your sword is not an ornament. Don't you think, PLAYERNAME?",
  103. "Goodness! I no longer sense a battle there now.",
  104. "let...",
  105. "Only engaged in the battle to bar their choice. Perhaps you should regret.",
  106. "The human nation was foolish to try and fight a giant's strength.",
  107. "Must...Retreat... Too...Strong.",
  108. "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker",
  109. "....! Fight...Defeat...It...Fight...Defeat...It..."
  110. };
  111. registerNPCs();
  112. }
  113. }