RaidbossInfo.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 custom.RaidbossInfo;
  16. import java.util.Map;
  17. import javolution.util.FastMap;
  18. import com.l2jserver.gameserver.datatables.NpcTable;
  19. import com.l2jserver.gameserver.datatables.SpawnTable;
  20. import com.l2jserver.gameserver.model.L2Spawn;
  21. import com.l2jserver.gameserver.model.Location;
  22. import com.l2jserver.gameserver.model.actor.L2Npc;
  23. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  24. import com.l2jserver.gameserver.model.actor.templates.L2NpcTemplate;
  25. import com.l2jserver.gameserver.model.quest.Quest;
  26. import com.l2jserver.gameserver.model.quest.QuestState;
  27. import com.l2jserver.gameserver.util.Util;
  28. /**
  29. * @authors: Kerberos (python), Nyaran (java)
  30. */
  31. public class RaidbossInfo extends Quest
  32. {
  33. private static final String qn = "RaidbossInfo";
  34. private static final int[] NPC =
  35. {
  36. 31729, 31730, 31731, 31732, 31733, 31734, 31735, 31736, 31737, 31738, 31739, 31740, 31741,
  37. 31742, 31743, 31744, 31745, 31746, 31747, 31748, 31749, 31750, 31751, 31752, 31753, 31754,
  38. 31755, 31756, 31757, 31758, 31759, 31760, 31761, 31762, 31763, 31764, 31765, 31766, 31767,
  39. 31768, 31769, 31770, 31771, 31772, 31773, 31774, 31775, 31776, 31777, 31778, 31779, 31780,
  40. 31781, 31782, 31783, 31784, 31785, 31786, 31787, 31788, 31789, 31790, 31791, 31792, 31793,
  41. 31794, 31795, 31796, 31797, 31798, 31799, 31800, 31801, 31802, 31803, 31804, 31805, 31806,
  42. 31807, 31808, 31809, 31810, 31811, 31812, 31813, 31814, 31815, 31816, 31817, 31818, 31819,
  43. 31820, 31821, 31822, 31823, 31824, 31825, 31826, 31827, 31828, 31829, 31830, 31831, 31832,
  44. 31833, 31834, 31835, 31836, 31837, 31838, 31839, 31840, 31841, 32337, 32338, 32339, 32340
  45. };
  46. private static final Map<Integer, Location> RADAR = new FastMap<Integer, Location>();
  47. @Override
  48. public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
  49. {
  50. String htmltext = event;
  51. QuestState st = player.getQuestState(qn);
  52. if (st == null)
  53. return htmltext;
  54. if (Util.isDigit(event))
  55. {
  56. htmltext = null;
  57. int rbid = Integer.parseInt(event);
  58. if (RADAR.containsKey(rbid))
  59. {
  60. Location loc = RADAR.get(rbid);
  61. st.addRadar(loc.getX(), loc.getY(), loc.getZ());
  62. }
  63. st.exitQuest(true);
  64. }
  65. return htmltext;
  66. }
  67. @Override
  68. public String onTalk(L2Npc npc, L2PcInstance player)
  69. {
  70. return "info.htm";
  71. }
  72. public RaidbossInfo(int id, String name, String descr)
  73. {
  74. super(id, name, descr);
  75. for (int i : NPC)
  76. {
  77. addStartNpc(i);
  78. addTalkId(i);
  79. }
  80. // Add all Raid Bosses to RAIDS list
  81. for (L2NpcTemplate raid : NpcTable.getInstance().getAllNpcOfClassType("L2RaidBoss"))
  82. {
  83. int x = 0, y = 0, z = 0;
  84. for (L2Spawn spawn : SpawnTable.getInstance().getSpawnTable())
  85. {
  86. if (spawn.getNpcid() == raid.getNpcId())
  87. {
  88. x = spawn.getLocx();
  89. y = spawn.getLocy();
  90. z = spawn.getLocz();
  91. break;
  92. }
  93. }
  94. RADAR.put(raid.getNpcId(), new Location(x, y, z));
  95. }
  96. }
  97. public static void main(String args[])
  98. {
  99. new RaidbossInfo(-1, qn, "custom");
  100. }
  101. }