|
@@ -0,0 +1,268 @@
|
|
|
+/*
|
|
|
+ * Copyright (C) 2004-2015 L2J DataPack
|
|
|
+ *
|
|
|
+ * This file is part of L2J DataPack.
|
|
|
+ *
|
|
|
+ * L2J DataPack is free software: you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU General Public License as published by
|
|
|
+ * the Free Software Foundation, either version 3 of the License, or
|
|
|
+ * (at your option) any later version.
|
|
|
+ *
|
|
|
+ * L2J DataPack is distributed in the hope that it will be useful,
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
+ * General Public License for more details.
|
|
|
+ *
|
|
|
+ * You should have received a copy of the GNU General Public License
|
|
|
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ */
|
|
|
+package village_master.OrcChange2;
|
|
|
+
|
|
|
+import ai.npc.AbstractNpcAI;
|
|
|
+
|
|
|
+import com.l2jserver.gameserver.enums.CategoryType;
|
|
|
+import com.l2jserver.gameserver.model.actor.L2Npc;
|
|
|
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
|
|
+import com.l2jserver.gameserver.model.base.ClassId;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Orc class transfer AI.
|
|
|
+ * @author Adry_85
|
|
|
+ */
|
|
|
+public final class OrcChange2 extends AbstractNpcAI
|
|
|
+{
|
|
|
+ // NPCs
|
|
|
+ private static int[] NPCS =
|
|
|
+ {
|
|
|
+ 30513, // Penatus
|
|
|
+ 30681, // Karia
|
|
|
+ 30704, // Garvarentz
|
|
|
+ 30865, // Ladanza
|
|
|
+ 30913, // Tushku
|
|
|
+ 31288, // Aklan
|
|
|
+ 31326, // Lambac
|
|
|
+ 31336, // Rahorakti
|
|
|
+ 31977, // Shaka
|
|
|
+ };
|
|
|
+
|
|
|
+ // Items
|
|
|
+ private static final int SHADOW_ITEM_EXCHANGE_COUPON_C_GRADE = 8870;
|
|
|
+ private static final int MARK_OF_CHALLENGER = 2627; // proof11x, proof21x
|
|
|
+ private static final int MARK_OF_PILGRIM = 2721; // proof31x, proof32x
|
|
|
+ private static final int MARK_OF_DUELIST = 2762; // proof21z
|
|
|
+ private static final int MARK_OF_WARSPIRIT = 2879; // proof32z
|
|
|
+ private static final int MARK_OF_GLORY = 3203; // proof11y, proof21y, proof31y, proof32y
|
|
|
+ private static final int MARK_OF_CHAMPION = 3276; // proof11z
|
|
|
+ private static final int MARK_OF_LORD = 3390; // proof31z
|
|
|
+
|
|
|
+ // Classes
|
|
|
+ private static final int DESTROYER = 46;
|
|
|
+ private static final int TYRANT = 48;
|
|
|
+ private static final int OVERLORD = 51;
|
|
|
+ private static final int WARCRYER = 52;
|
|
|
+
|
|
|
+ private OrcChange2()
|
|
|
+ {
|
|
|
+ super(OrcChange2.class.getSimpleName(), "village_master");
|
|
|
+ addStartNpc(NPCS);
|
|
|
+ addTalkId(NPCS);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ String htmltext = null;
|
|
|
+ switch (event)
|
|
|
+ {
|
|
|
+ case "30513-03.htm": // master_lv3_orc006ra
|
|
|
+ case "30513-04.htm": // master_lv3_orc007ra
|
|
|
+ case "30513-05.htm": // master_lv3_orc007rat
|
|
|
+ case "30513-07.htm": // master_lv3_orc006ma
|
|
|
+ case "30513-08.htm": // master_lv3_orc007ma
|
|
|
+ case "30513-09.htm": // master_lv3_orc007mat
|
|
|
+ case "30513-10.htm": // master_lv3_orc003s
|
|
|
+ case "30513-11.htm": // master_lv3_orc006sa
|
|
|
+ case "30513-12.htm": // master_lv3_orc007sa
|
|
|
+ case "30513-13.htm": // master_lv3_orc007sat
|
|
|
+ case "30513-14.htm": // master_lv3_orc006sb
|
|
|
+ case "30513-15.htm": // master_lv3_orc007sb
|
|
|
+ case "30513-16.htm": // master_lv3_orc007sbt
|
|
|
+ {
|
|
|
+ htmltext = event;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "46":
|
|
|
+ case "48":
|
|
|
+ case "51":
|
|
|
+ case "52":
|
|
|
+ {
|
|
|
+ htmltext = ClassChangeRequested(player, Integer.valueOf(event));
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ private String ClassChangeRequested(L2PcInstance player, int classId)
|
|
|
+ {
|
|
|
+ String htmltext = null;
|
|
|
+ if (player.isInCategory(CategoryType.THIRD_CLASS_GROUP))
|
|
|
+ {
|
|
|
+ htmltext = "30513-19.htm"; // fnYouAreThirdClass
|
|
|
+ }
|
|
|
+
|
|
|
+ else if ((classId == DESTROYER) && (player.getClassId() == ClassId.orcRaider))
|
|
|
+ {
|
|
|
+ if (player.getLevel() < 40)
|
|
|
+ {
|
|
|
+ if (hasQuestItems(player, MARK_OF_CHALLENGER, MARK_OF_GLORY, MARK_OF_CHAMPION))
|
|
|
+ {
|
|
|
+ htmltext = "30513-20.htm"; // fnLowLevel11
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-21.htm"; // fnLowLevelNoProof11
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (hasQuestItems(player, MARK_OF_CHALLENGER, MARK_OF_GLORY, MARK_OF_CHAMPION))
|
|
|
+ {
|
|
|
+ takeItems(player, -1, MARK_OF_CHALLENGER, MARK_OF_GLORY, MARK_OF_CHAMPION);
|
|
|
+ player.setClassId(DESTROYER);
|
|
|
+ player.setBaseClass(DESTROYER);
|
|
|
+ // SystemMessage and cast skill is done by setClassId
|
|
|
+ player.broadcastUserInfo();
|
|
|
+ giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_C_GRADE, 15);
|
|
|
+ htmltext = "30513-22.htm"; // fnAfterClassChange11
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-23.htm"; // fnNoProof11
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if ((classId == TYRANT) && (player.getClassId() == ClassId.orcMonk))
|
|
|
+ {
|
|
|
+ if (player.getLevel() < 40)
|
|
|
+ {
|
|
|
+ if (hasQuestItems(player, MARK_OF_CHALLENGER, MARK_OF_GLORY, MARK_OF_DUELIST))
|
|
|
+ {
|
|
|
+ htmltext = "30513-24.htm"; // fnLowLevel21
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-25.htm"; // fnLowLevelNoProof21
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (hasQuestItems(player, MARK_OF_CHALLENGER, MARK_OF_GLORY, MARK_OF_DUELIST))
|
|
|
+ {
|
|
|
+ takeItems(player, -1, MARK_OF_CHALLENGER, MARK_OF_GLORY, MARK_OF_DUELIST);
|
|
|
+ player.setClassId(TYRANT);
|
|
|
+ player.setBaseClass(TYRANT);
|
|
|
+ // SystemMessage and cast skill is done by setClassId
|
|
|
+ player.broadcastUserInfo();
|
|
|
+ giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_C_GRADE, 15);
|
|
|
+ htmltext = "30513-26.htm"; // fnAfterClassChange21
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-27.htm"; // fnNoProof21
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if ((classId == OVERLORD) && (player.getClassId() == ClassId.orcShaman))
|
|
|
+ {
|
|
|
+ if (player.getLevel() < 40)
|
|
|
+ {
|
|
|
+ if (hasQuestItems(player, MARK_OF_PILGRIM, MARK_OF_GLORY, MARK_OF_LORD))
|
|
|
+ {
|
|
|
+ htmltext = "30513-28.htm"; // fnLowLevel31
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-29.htm"; // fnLowLevelNoProof31
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (hasQuestItems(player, MARK_OF_PILGRIM, MARK_OF_GLORY, MARK_OF_LORD))
|
|
|
+ {
|
|
|
+ takeItems(player, -1, MARK_OF_PILGRIM, MARK_OF_GLORY, MARK_OF_LORD);
|
|
|
+ player.setClassId(OVERLORD);
|
|
|
+ player.setBaseClass(OVERLORD);
|
|
|
+ // SystemMessage and cast skill is done by setClassId
|
|
|
+ player.broadcastUserInfo();
|
|
|
+ giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_C_GRADE, 15);
|
|
|
+ htmltext = "30513-30.htm"; // fnAfterClassChange31
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-31.htm"; // fnNoProof31
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if ((classId == WARCRYER) && (player.getClassId() == ClassId.orcShaman))
|
|
|
+ {
|
|
|
+ if (player.getLevel() < 40)
|
|
|
+ {
|
|
|
+ if (hasQuestItems(player, MARK_OF_PILGRIM, MARK_OF_GLORY, MARK_OF_WARSPIRIT))
|
|
|
+ {
|
|
|
+ htmltext = "30513-32.htm"; // fnLowLevel32
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-33.htm"; // fnLowLevelNoProof32
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (hasQuestItems(player, MARK_OF_PILGRIM, MARK_OF_GLORY, MARK_OF_WARSPIRIT))
|
|
|
+ {
|
|
|
+ takeItems(player, -1, MARK_OF_PILGRIM, MARK_OF_GLORY, MARK_OF_WARSPIRIT);
|
|
|
+ player.setClassId(WARCRYER);
|
|
|
+ player.setBaseClass(WARCRYER);
|
|
|
+ // SystemMessage and cast skill is done by setClassId
|
|
|
+ player.broadcastUserInfo();
|
|
|
+ giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_C_GRADE, 15);
|
|
|
+ htmltext = "30513-34.htm"; // fnAfterClassChange32
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-35.htm"; // fnNoProof32
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onTalk(L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ String htmltext = null;
|
|
|
+ if (player.isInCategory(CategoryType.FOURTH_CLASS_GROUP) && (player.isInCategory(CategoryType.ORC_MALL_CLASS) || player.isInCategory(CategoryType.ORC_FALL_CLASS)))
|
|
|
+ {
|
|
|
+ htmltext = "30513-01.htm"; // fnYouAreFourthClass
|
|
|
+ }
|
|
|
+ else if (player.isInCategory(CategoryType.ORC_MALL_CLASS) || player.isInCategory(CategoryType.ORC_FALL_CLASS))
|
|
|
+ {
|
|
|
+ final ClassId classId = player.getClassId();
|
|
|
+ if ((classId == ClassId.orcRaider) || (classId == ClassId.destroyer))
|
|
|
+ {
|
|
|
+ htmltext = "30513-02.htm"; // fnClassList1
|
|
|
+ }
|
|
|
+ else if ((classId == ClassId.orcMonk) || (classId == ClassId.tyrant))
|
|
|
+ {
|
|
|
+ htmltext = "30513-06.htm"; // fnClassList2
|
|
|
+ }
|
|
|
+ else if ((classId == ClassId.orcShaman) || (classId == ClassId.overlord) || (classId == ClassId.warcryer))
|
|
|
+ {
|
|
|
+ htmltext = "30513-10.htm"; // fnClassList3
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-17.htm"; // fnYouAreFirstClass
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30513-18.htm"; // fnClassMismatch
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String[] args)
|
|
|
+ {
|
|
|
+ new OrcChange2();
|
|
|
+ }
|
|
|
+}
|