123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- /*
- * 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 net.sf.l2j.gameserver.clientpackets;
- import java.util.logging.Logger;
- import net.sf.l2j.Config;
- import net.sf.l2j.gameserver.datatables.SkillTable;
- import net.sf.l2j.gameserver.datatables.SkillTreeTable;
- import net.sf.l2j.gameserver.model.L2EnchantSkillLearn;
- import net.sf.l2j.gameserver.model.L2ItemInstance;
- import net.sf.l2j.gameserver.model.L2ShortCut;
- import net.sf.l2j.gameserver.model.L2Skill;
- import net.sf.l2j.gameserver.model.L2EnchantSkillLearn.EnchantSkillDetail;
- import net.sf.l2j.gameserver.model.actor.instance.L2FolkInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.base.Experience;
- import net.sf.l2j.gameserver.network.SystemMessageId;
- import net.sf.l2j.gameserver.serverpackets.ShortCutRegister;
- import net.sf.l2j.gameserver.serverpackets.SystemMessage;
- import net.sf.l2j.gameserver.serverpackets.UserInfo;
- import net.sf.l2j.gameserver.util.IllegalPlayerAction;
- import net.sf.l2j.gameserver.util.Util;
- import net.sf.l2j.util.Rnd;
- /**
- * Format (ch) dd
- * c: (id) 0xD0
- * h: (subid) 0x34
- * d: skill id
- * d: skill lvl
- * @author -Wooden-
- *
- */
- public final class RequestExEnchantSkillRouteChange extends L2GameClientPacket
- {
- protected static final Logger _log = Logger.getLogger(RequestExEnchantSkillRouteChange.class.getName());
- private int _skillId;
- private int _skillLvl;
-
-
- @Override
- protected void readImpl()
- {
- _skillId = readD();
- _skillLvl = readD();
- }
- /* (non-Javadoc)
- * @see net.sf.l2j.gameserver.clientpackets.ClientBasePacket#runImpl()
- */
- @Override
- protected void runImpl()
- {
- L2PcInstance player = getClient().getActiveChar();
- if (player == null)
- return;
-
- L2FolkInstance trainer = player.getLastFolkNPC();
- if (trainer == null)
- return;
-
- int npcid = trainer.getNpcId();
-
- if ((trainer == null || !player.isInsideRadius(trainer, L2NpcInstance.INTERACTION_DISTANCE, false, false)) && !player.isGM())
- return;
-
- if (player.getClassId().getId() < 88 ||(player.getClassId().getId() >= 123 && player.getClassId().getId() < 132 )||player.getClassId().getId() == 135) // requires to have 3rd class quest completed
- return;
-
- if (player.getLevel() < 76)
- return;
-
- L2Skill skill = SkillTable.getInstance().getInfo(_skillId, _skillLvl);
- if (skill == null)
- {
- return;
- }
-
- if (!skill.canTeachBy(npcid) || !skill.getCanLearn(player.getClassId()))
- {
- if (!Config.ALT_GAME_SKILL_LEARN)
- {
- player.sendMessage("You are trying to learn skill that u can't..");
- Util.handleIllegalPlayerAction(player, "Client "+this.getClient()+" tried to learn skill that he can't!!!", IllegalPlayerAction.PUNISH_KICK);
- return;
- }
- }
-
- int reqItemId = SkillTreeTable.CHANGE_ENCHANT_BOOK;
-
- L2EnchantSkillLearn s = SkillTreeTable.getInstance().getSkillEnchantmentBySkillId(_skillId);
- if (s == null)
- {
- return;
- }
-
- int currentLevel = player.getSkillLevel(_skillId);
- // do u have this skill enchanted?
- if (currentLevel <= 100)
- {
- return;
- }
-
- int currentEnchantLevel = currentLevel%100;
- // is the requested level valid?
- if (currentEnchantLevel != _skillLvl%100)
- {
- return;
- }
- EnchantSkillDetail esd = s.getEnchantSkillDetail(_skillLvl);
-
- int requiredSp = esd.getSpCost();
- int requiredExp = esd.getExp();
-
- if (player.getSp() >= requiredSp)
- {
- long expAfter = player.getExp() - requiredExp;
- if (player.getExp() >= requiredExp && expAfter >= Experience.LEVEL[player.getLevel()])
- {
- // only first lvl requires book
- L2ItemInstance spb = player.getInventory().getItemByItemId(reqItemId);
- if (Config.ES_SP_BOOK_NEEDED)
- {
- if (spb == null)// Haven't spellbook
- {
- player.sendPacket(new SystemMessage(SystemMessageId.YOU_DONT_HAVE_ALL_ITENS_NEEDED_TO_CHANGE_SKILL_ENCHANT_ROUTE));
- return;
- }
- }
-
- boolean check;
- check = player.getStat().removeExpAndSp(requiredExp, requiredSp);
- if (Config.ES_SP_BOOK_NEEDED)
- {
- check &= player.destroyItem("Consume", spb.getObjectId(), 1, trainer, true);
- }
-
- if (!check)
- {
- player.sendPacket(new SystemMessage(SystemMessageId.YOU_DONT_HAVE_ALL_OF_THE_ITEMS_NEEDED_TO_ENCHANT_THAT_SKILL));
- return;
- }
-
- int levelPenalty = Rnd.get(Math.min(4, currentEnchantLevel));
- _skillLvl -= levelPenalty;
- if (_skillLvl%100 == 0)
- {
- _skillLvl = s.getBaseLevel();
- }
-
- skill = SkillTable.getInstance().getInfo(_skillId, _skillLvl);
-
- if (skill != null)
- {
- player.addSkill(skill, true);
- }
-
- if (Config.DEBUG)
- {
- _log.fine("Learned skill ID: "+_skillId+" Level: "+_skillLvl+" for "+requiredSp+" SP, "+requiredExp+" EXP.");
- }
- player.sendPacket(new UserInfo(player));
-
- if (levelPenalty == 0)
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.SKILL_ENCHANT_CHANGE_SUCCESSFUL_S1_LEVEL_WILL_REMAIN);
- sm.addSkillName(_skillId);
- player.sendPacket(sm);
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.SKILL_ENCHANT_CHANGE_SUCCESSFUL_S1_LEVEL_WAS_DECREASED_BY_S2);
- sm.addSkillName(_skillId);
- sm.addNumber(levelPenalty);
- player.sendPacket(sm);
- }
-
- trainer.showEnchantChangeSkillList(player);
-
- this.updateSkillShortcuts(player);
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.YOU_DONT_HAVE_ENOUGH_EXP_TO_ENCHANT_THAT_SKILL);
- player.sendPacket(sm);
- }
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.YOU_DONT_HAVE_ENOUGH_SP_TO_ENCHANT_THAT_SKILL);
- player.sendPacket(sm);
- }
- }
-
- private void updateSkillShortcuts(L2PcInstance player)
- {
- // update all the shortcuts to this skill
- L2ShortCut[] allShortCuts = player.getAllShortCuts();
-
- for (L2ShortCut sc : allShortCuts)
- {
- if (sc.getId() == _skillId && sc.getType() == L2ShortCut.TYPE_SKILL)
- {
- L2ShortCut newsc = new L2ShortCut(sc.getSlot(), sc.getPage(), sc.getType(), sc.getId(), _skillLvl, 1);
- player.sendPacket(new ShortCutRegister(newsc));
- player.registerShortCut(newsc);
- }
- }
- }
- /* (non-Javadoc)
- * @see net.sf.l2j.gameserver.BasePacket#getType()
- */
- @Override
- public String getType()
- {
- return "[C] D0:34 RequestExEnchantSkillRouteChange";
- }
-
- }
|