123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- /*
- * 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.OrcChange1;
- import ai.npc.AbstractNpcAI;
- import com.l2jserver.gameserver.enums.CategoryType;
- import com.l2jserver.gameserver.enums.Race;
- 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 OrcChange1 extends AbstractNpcAI
- {
- // NPCs
- private static int[] NPCS =
- {
- 30500, // Osborn
- 30505, // Drikus
- 30508, // Castor
- 32097, // Finker
- };
-
- // Items
- private static final int SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE = 8869;
- private static final int MARK_OF_RAIDER = 1592;
- private static final int KHAVATARI_TOTEM = 1615;
- private static final int MASK_OF_MEDIUM = 1615;
-
- private OrcChange1()
- {
- super(OrcChange1.class.getSimpleName(), "village_master");
- addStartNpc(NPCS);
- addTalkId(NPCS);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = null;
- switch (event)
- {
- case "30500-01.htm": // high_prefect_osborn003f
- case "30500-02.htm": // high_prefect_osborn006fa
- case "30500-03.htm": // high_prefect_osborn007fa
- case "30500-04.htm": // high_prefect_osborn006fb
- case "30500-05.htm": // high_prefect_osborn007fb
- case "30500-06.htm": // high_prefect_osborn003m
- case "30500-07.htm": // high_prefect_osborn006ma
- case "30500-08.htm": // high_prefect_osborn007ma
- case "30505-01.htm": // high_prefect_drikus003f
- case "30505-02.htm": // high_prefect_drikus006fa
- case "30505-03.htm": // high_prefect_drikus007fa
- case "30505-04.htm": // high_prefect_drikus006fb
- case "30505-05.htm": // high_prefect_drikus007fb
- case "30505-06.htm": // high_prefect_drikus003m
- case "30505-07.htm": // high_prefect_drikus006ma
- case "30505-08.htm": // high_prefect_drikus007ma
- case "30508-01.htm": // high_prefect_cional003f
- case "30508-02.htm": // high_prefect_cional006fa
- case "30508-03.htm": // high_prefect_cional007fa
- case "30508-04.htm": // high_prefect_cional006fb
- case "30508-05.htm": // high_prefect_cional007fb
- case "30508-06.htm": // high_prefect_cional003m
- case "30508-07.htm": // high_prefect_cional006ma
- case "30508-08.htm": // high_prefect_cional007ma
- case "32097-01.htm": // high_prefect_finker003f
- case "32097-02.htm": // high_prefect_finker006fa
- case "32097-03.htm": // high_prefect_finker007fa
- case "32097-04.htm": // high_prefect_finker006fb
- case "32097-05.htm": // high_prefect_finker007fb
- case "32097-06.htm": // high_prefect_finker003m
- case "32097-07.htm": // high_prefect_finker006ma
- case "32097-08.htm": // high_prefect_finker007ma
- {
- htmltext = event;
- break;
- }
- case "45":
- case "47":
- case "50":
- {
- htmltext = ClassChangeRequested(player, npc, Integer.valueOf(event));
- break;
- }
- }
- return htmltext;
- }
-
- private String ClassChangeRequested(L2PcInstance player, L2Npc npc, int classId)
- {
- String htmltext = null;
- if (player.isInCategory(CategoryType.SECOND_CLASS_GROUP))
- {
- htmltext = npc.getId() + "-09.htm"; // fnYouAreSecondClass
- }
- else if (player.isInCategory(CategoryType.THIRD_CLASS_GROUP))
- {
- htmltext = npc.getId() + "-10.htm"; // fnYouAreThirdClass
- }
- else if (player.isInCategory(CategoryType.FOURTH_CLASS_GROUP))
- {
- htmltext = "30500-24.htm"; // fnYouAreFourthClass
- }
- else if ((classId == 45) && (player.getClassId() == ClassId.orcFighter))
- {
- if (player.getLevel() < 20)
- {
- if (hasQuestItems(player, MARK_OF_RAIDER))
- {
- htmltext = npc.getId() + "-11.htm"; // fnLowLevel11
- }
- else
- {
- htmltext = npc.getId() + "-12.htm"; // fnLowLevelNoProof11
- }
- }
- else if (hasQuestItems(player, MARK_OF_RAIDER))
- {
- takeItems(player, MARK_OF_RAIDER, -1);
- player.setClassId(45);
- player.setBaseClass(45);
- // SystemMessage and cast skill is done by setClassId
- player.broadcastUserInfo();
- giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
- htmltext = npc.getId() + "-14.htm"; // fnAfterClassChange11
- }
- else
- {
- htmltext = npc.getId() + "-13.htm"; // fnNoProof11
- }
- }
- else if ((classId == 47) && (player.getClassId() == ClassId.orcFighter))
- {
- if (player.getLevel() < 20)
- {
- if (hasQuestItems(player, KHAVATARI_TOTEM))
- {
- htmltext = npc.getId() + "-15.htm"; // fnLowLevel12
- }
- else
- {
- htmltext = npc.getId() + "-16.htm"; // fnLowLevelNoProof12
- }
- }
- else if (hasQuestItems(player, KHAVATARI_TOTEM))
- {
- takeItems(player, KHAVATARI_TOTEM, -1);
- player.setClassId(47);
- player.setBaseClass(47);
- // SystemMessage and cast skill is done by setClassId
- player.broadcastUserInfo();
- giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
- htmltext = npc.getId() + "-18.htm"; // fnAfterClassChange12
- }
- else
- {
- htmltext = npc.getId() + "-17.htm"; // fnNoProof12
- }
- }
- else if ((classId == 50) && (player.getClassId() == ClassId.orcMage))
- {
- if (player.getLevel() < 20)
- {
- if (hasQuestItems(player, MASK_OF_MEDIUM))
- {
- htmltext = npc.getId() + "-19.htm"; // fnLowLevel21
- }
- else
- {
- htmltext = npc.getId() + "-20.htm"; // fnLowLevelNoProof21
- }
- }
- else if (hasQuestItems(player, MASK_OF_MEDIUM))
- {
- takeItems(player, MASK_OF_MEDIUM, -1);
- player.setClassId(50);
- player.setBaseClass(50);
- // SystemMessage and cast skill is done by setClassId
- player.broadcastUserInfo();
- giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
- htmltext = npc.getId() + "-22.htm"; // fnAfterClassChange21
- }
- else
- {
- htmltext = npc.getId() + "-21.htm"; // fnNoProof21
- }
- }
- return htmltext;
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- String htmltext = null;
- if (player.getRace() == Race.ORC)
- {
- if (player.isInCategory(CategoryType.FIGHTER_GROUP))
- {
- htmltext = npc.getId() + "-01.htm"; // fnClassList1
- }
- else if (player.isInCategory(CategoryType.MAGE_GROUP))
- {
- htmltext = npc.getId() + "-06.htm"; // fnClassList2
- }
- }
- else
- {
- htmltext = npc.getId() + "-23.htm"; // fnClassMismatch
- }
- return htmltext;
- }
-
- public static void main(String[] args)
- {
- new OrcChange1();
- }
- }
|