/*
* This program 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. This program 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 silentium.scripts.custom;
import silentium.gameserver.model.L2ItemInstance;
import silentium.gameserver.model.L2Object;
import silentium.gameserver.model.L2Party;
import silentium.gameserver.model.L2Skill;
import silentium.gameserver.model.actor.L2Attackable;
import silentium.gameserver.model.actor.L2Character;
import silentium.gameserver.model.actor.L2Npc;
import silentium.gameserver.model.actor.L2Playable;
import silentium.gameserver.model.actor.instance.L2PcInstance;
import silentium.gameserver.model.itemcontainer.PcInventory;
import silentium.gameserver.model.quest.Quest;
import silentium.gameserver.model.quest.QuestState;
import silentium.gameserver.model.quest.State;
import silentium.gameserver.network.serverpackets.ActionFailed;
import silentium.gameserver.network.serverpackets.WareHouseWithdrawalList;
import silentium.gameserver.scripting.ScriptFile;
import silentium.gameserver.tables.SkillTable;
import silentium.gameserver.tables.SkillTable.FrequentSkill;
import silentium.gameserver.utils.Util;
/**
* This script supports :
* <ul>
* <li>Ketra Orc Village functions</li>
* <li>Quests failures && alliance downgrade if you kill an allied mob.</li>
* <li>Petrification effect in case an allied player helps a neutral or enemy.</li>
* </ul>
*/
public class KetraOrcSupport extends Quest implements ScriptFile {
private static final String qn = "KetraOrcSupport";
private static final int KADUN = 31370; // Hierarch
private static final int WAHKAN = 31371; // Messenger
private static final int ASEFA = 31372; // Soul Guide
private static final int ATAN = 31373; // Grocer
private static final int JAFF = 31374; // Warehouse Keeper
private static final int JUMARA = 31375; // Trader
private static final int KURFA = 31376; // Gate Keeper
private static final int Ketra_Alliance_One = 7211;
private static final int Ketra_Alliance_Two = 7212;
private static final int Ketra_Alliance_Three = 7213;
private static final int Ketra_Alliance_Four = 7214;
private static final int Ketra_Alliance_Five = 7215;
private static final int HORN = 7186;
private static final int[] _ketras = { 21324, 21325, 21327, 21328, 21329, 21331, 21332, 21334, 21335, 21336, 21338, 21339, 21340, 21342, 21343, 21344, 21345, 21346, 21347, 21348, 21349 };
private static final int[][] BUFF = { { 4359, 1, 2 }, // Focus: Requires 2 Buffalo Horns
{ 4360, 1, 2 }, // Death Whisper: Requires 2 Buffalo Horns
{ 4345, 1, 3 }, // Might: Requires 3 Buffalo Horns
{ 4355, 1, 3 }, // Acumen: Requires 3 Buffalo Horns
{ 4352, 1, 3 }, // Berserker: Requires 3 Buffalo Horns
{ 4354, 1, 3 }, // Vampiric Rage: Requires 3 Buffalo Horns
{ 4356, 1, 6 }, // Empower: Requires 6 Buffalo Horns
{ 4357, 1, 6 }
// Haste: Requires 6 Buffalo Horns
};
/**
* Names of missions which will be automatically dropped if the alliance is broken.
*/
private static final String[] ketraMissions = { "Q605_AllianceWithKetraOrcs", "Q606_WarWithVarkaSilenos", "Q607_ProveYourCourage", "Q608_SlayTheEnemyCommander", "Q609_MagicalPowerOfWater_Part1", "Q610_MagicalPowerOfWater_Part2" };
public static void onLoad() {
new KetraOrcSupport(-1, "KetraOrcSupport", "Ketra Orc Support", "custom");
}
public KetraOrcSupport(final int scriptId, final String name, final String dname, final String path) {
super(scriptId, name, dname, path);
addFirstTalkId(KADUN, WAHKAN, ASEFA, ATAN, JAFF, JUMARA, KURFA);
addTalkId(ASEFA, JAFF, KURFA);
addStartNpc(JAFF, KURFA);
// Verify if the killer didn't kill an allied mob. Test his party aswell.
addKillId(_ketras);
// Verify if an allied is healing/buff an enemy. Petrify him if it's the case.
addSkillSeeId(_ketras);
}
@Override
public String onAdvEvent(final String event, final L2Npc npc, final L2PcInstance player) {
String htmltext = getNoQuestMsg();
final QuestState st = player.getQuestState(getName());
if (st == null)
return htmltext;
if (Util.isDigit(event)) {
final int eventId = Integer.parseInt(event);
if (eventId >= 0 && eventId <= 7) {
if (st.getQuestItemsCount(HORN) >= BUFF[eventId - 1][2]) {
st.takeItems(HORN, BUFF[eventId - 1][2]);
npc.setTarget(player);
npc.doCast(SkillTable.getInstance().getInfo(BUFF[eventId - 1][0], BUFF[eventId - 1][1]));
npc.setCurrentHpMp(npc.getMaxHp(), npc.getMaxMp());
htmltext = "31372-4.htm";
}
}
} else if ("Withdraw".equals(event)) {
if (player.getWarehouse().getSize() == 0)
htmltext = "31374-0.htm";
else {
player.sendPacket(ActionFailed.STATIC_PACKET);
player.setActiveWarehouse(player.getWarehouse());
player.sendPacket(new WareHouseWithdrawalList(player, 1));
}
} else if ("Teleport".equals(event)) {
switch (player.getAllianceWithVarkaKetra()) {
case 4:
htmltext = "31376-4.htm";
break;
case 5:
htmltext = "31376-5.htm";
break;
}
}
return htmltext;
}
@Override
public String onFirstTalk(final L2Npc npc, final L2PcInstance player) {
String htmltext = getNoQuestMsg();
QuestState st = player.getQuestState(qn);
if (st == null)
st = newQuestState(player);
final int allianceLevel = player.getAllianceWithVarkaKetra();
switch (npc.getNpcId()) {
case KADUN:
htmltext = allianceLevel > 0 ? "31370-friend.htm" : "31370-no.htm";
break;
case WAHKAN:
htmltext = allianceLevel > 0 ? "31371-friend.htm" : "31371-no.htm";
break;
case ASEFA:
st.setState(State.STARTED);
if (allianceLevel < 1)
htmltext = "31372-3.htm";
else if (allianceLevel < 3 && allianceLevel > 0)
htmltext = "31372-1.htm";
else if (allianceLevel > 2) {
htmltext = st.hasQuestItems(HORN) ? "31372-4.htm" : "31372-2.htm";
}
break;
case ATAN:
if (player.getKarma() >= 1)
htmltext = "31373-pk.htm";
else if (allianceLevel <= 0)
htmltext = "31373-no.htm";
else htmltext = allianceLevel == 1 || allianceLevel == 2 ? "31373-1.htm" : "31373-2.htm";
break;
case JAFF:
switch (allianceLevel) {
case 1:
htmltext = "31374-1.htm";
break;
case 2:
case 3:
htmltext = "31374-2.htm";
break;
default:
if (allianceLevel <= 0)
htmltext = "31374-no.htm";
else htmltext = player.getWarehouse().getSize() == 0 ? "31374-3.htm" : "31374-4.htm";
break;
}
break;
case JUMARA:
switch (allianceLevel) {
case 2:
htmltext = "31375-1.htm";
break;
case 3:
case 4:
htmltext = "31375-2.htm";
break;
case 5:
htmltext = "31375-3.htm";
break;
default:
htmltext = "31375-no.htm";
break;
}
break;
case KURFA:
if (allianceLevel <= 0)
htmltext = "31376-no.htm";
else if (allianceLevel > 0 && allianceLevel < 4)
htmltext = "31376-1.htm";
else htmltext = allianceLevel == 4 ? "31376-2.htm" : "31376-3.htm";
break;
}
return htmltext;
}
@Override
public String onKill(final L2Npc npc, final L2PcInstance player, final boolean isPet) {
final L2Party party = player.getParty();
if (party != null) {
for (final L2PcInstance partyMember : party.getPartyMembers()) {
if (partyMember != null)
testKetraDemote(partyMember);
}
} else
testKetraDemote(player);
return null;
}
@Override
public String onSkillSee(final L2Npc npc, final L2PcInstance caster, final L2Skill skill, final L2Object[] targets, final boolean isPet) {
// Caster is an allied.
if (caster.isAlliedWithKetra()) {
// Caster's skill is a positive effect ? Go further.
switch (skill.getSkillType()) {
case BUFF:
case HEAL:
case HEAL_PERCENT:
case HEAL_STATIC:
case BALANCE_LIFE:
case HOT:
for (final L2Character target : (L2Character[]) targets) {
// Character isn't existing, is dead or is current caster, we drop check.
if (target == null || target.isDead() || target == caster)
continue;
// Target isn't a summon nor a player, we drop check.
if (!(target instanceof L2Playable))
continue;
// Retrieve the player behind that target.
final L2PcInstance player = target.getActingPlayer();
// If player is neutral or enemy, go further.
if (!player.isAlliedWithKetra()) {
// If the NPC got that player registered in aggro list, go further.
if (((L2Attackable) npc).containsTarget(player)) {
// Save current target for future use.
final L2Object oldTarget = npc.getTarget();
// Curse the heretic or his pet.
npc.setTarget(isPet && player.getPet() != null ? caster.getPet() : caster);
npc.doCast(FrequentSkill.VARKA_KETRA_PETRIFICATION.getSkill());
// Revert to old target && drop the loop.
npc.setTarget(oldTarget);
break;
}
}
}
break;
}
}
// Continue normal behavior.
return super.onSkillSee(npc, caster, skill, targets, isPet);
}
/**
* That method drops current alliance and retrograde badge.<BR>
* If any Varka quest is in progress, it stops the quest (and drop all related qItems) :
*
* @param player The player to check.
*/
private static void testKetraDemote(final L2PcInstance player) {
if (player.isAlliedWithKetra()) {
// Drop the alliance (old friends become aggro).
player.setAllianceWithVarkaKetra(0);
final PcInventory inventory = player.getInventory();
L2ItemInstance item;
// Drop by 1 the level of that alliance (symbolized by a quest item).
item = inventory.getItemByItemId(Ketra_Alliance_One);
if (item != null)
player.destroyItemByItemId("Quest", Ketra_Alliance_One, item.getCount(), player, true);
else {
item = inventory.getItemByItemId(Ketra_Alliance_Two);
if (item != null) {
player.destroyItemByItemId("Quest", Ketra_Alliance_Two, item.getCount(), player, true);
player.addItem("Quest", Ketra_Alliance_One, 1, player.getTarget(), true);
} else {
item = inventory.getItemByItemId(Ketra_Alliance_Three);
if (item != null) {
player.destroyItemByItemId("Quest", Ketra_Alliance_Three, item.getCount(), player, true);
player.addItem("Quest", Ketra_Alliance_Two, 1, player.getTarget(), true);
} else {
item = inventory.getItemByItemId(Ketra_Alliance_Four);
if (item != null) {
player.destroyItemByItemId("Quest", Ketra_Alliance_Four, item.getCount(), player, true);
player.addItem("Quest", Ketra_Alliance_Three, 1, player.getTarget(), true);
} else {
item = inventory.getItemByItemId(Ketra_Alliance_Five);
if (item != null) {
player.destroyItemByItemId("Quest", Ketra_Alliance_Five, item.getCount(), player, true);
player.addItem("Quest", Ketra_Alliance_Four, 1, player.getTarget(), true);
}
}
}
}
}
QuestState pst;
for (final String mission : ketraMissions) {
pst = player.getQuestState(mission);
if (pst != null)
pst.exitQuest(true);
}
}
}
}