123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- * 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 handlers.bypasshandlers;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.SevenSigns;
- import com.l2jserver.gameserver.datatables.SkillTable;
- import com.l2jserver.gameserver.handler.IBypassHandler;
- import com.l2jserver.gameserver.model.actor.L2Character;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2WyvernManagerInstance;
- import com.l2jserver.gameserver.util.Util;
- public class RideWyvern implements IBypassHandler
- {
- private static final String[] COMMANDS =
- {
- "RideWyvern"
- };
-
- private static final int[] STRIDERS =
- {
- 12526, 12527, 12528, 16038, 16039, 16040, 16068, 13197
- };
-
- @Override
- public boolean useBypass(String command, L2PcInstance activeChar, L2Character target)
- {
- if (!(target instanceof L2WyvernManagerInstance))
- {
- return false;
- }
-
- L2WyvernManagerInstance npc = (L2WyvernManagerInstance) target;
- if (!npc.isOwnerClan(activeChar))
- {
- return false;
- }
-
- if (!Config.ALLOW_WYVERN_DURING_SIEGE && (npc.isInSiege() || activeChar.isInSiege()))
- {
- activeChar.sendMessage("You cannot ride wyvern during siege.");
- return false;
- }
-
- if ((SevenSigns.getInstance().getSealOwner(SevenSigns.SEAL_STRIFE) == SevenSigns.CABAL_DUSK) && SevenSigns.getInstance().isSealValidationPeriod())
- {
- activeChar.sendMessage("You cannot ride wyvern while Seal of Strife controlled by Dusk.");
- return false;
- }
-
- if (activeChar.getPet() == null)
- {
- if (activeChar.isMounted())
- {
- activeChar.sendMessage("You already have a pet.");
- }
- else
- {
- activeChar.sendMessage("Summon your Strider first.");
- }
- }
- else if (Util.contains(STRIDERS, activeChar.getPet().getNpcId()))
- {
- if ((activeChar.getInventory().getItemByItemId(1460) != null) && (activeChar.getInventory().getItemByItemId(1460).getCount() >= 25))
- {
- if (activeChar.getPet().getLevel() < 55)
- {
- activeChar.sendMessage("Your Strider Has not reached the required level.");
- }
- else
- {
- activeChar.getPet().unSummon(activeChar);
- if (activeChar.mount(12621, 0, true))
- {
- activeChar.getInventory().destroyItemByItemId("Wyvern", 1460, 25, activeChar, npc);
- activeChar.addSkill(SkillTable.FrequentSkill.WYVERN_BREATH.getSkill());
- activeChar.sendMessage("The Wyvern has been summoned successfully!");
- }
- return true;
- }
- }
- else
- {
- activeChar.sendMessage("You need 25 Crystals: B Grade.");
- }
- }
- else
- {
- activeChar.sendMessage("Unsummon your pet.");
- }
-
- return false;
- }
-
- @Override
- public String[] getBypassList()
- {
- return COMMANDS;
- }
- }
|