Jump to content
  • 0

Max skill enchant limit


Question

Posted

Hello, how to make max skill enchant for l2jfrozen?

I want to make max skill enchant to +12

I have found code for l2jserver but i dont know where can add code to l2pcinstance.java

 

+++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java (working copy)
@@ -15769,6 +15769,31 @@
  for (int id : getSkills().keySet())
  {
  int level = getSkillLevel(id);
+ if (Config.ENABLE_SKILL_MAX_ENCHANT_LIMIT)
+ {
+ L2Skill fixedSkill = null;
+ int oldLevel = level % 100;
+ if (Config.SKILL_MAX_ENCHANT_LIMIT_LEVEL > 0) // Nerf enchantment
+ {
+ if (oldLevel > Config.SKILL_MAX_ENCHANT_LIMIT_LEVEL)
+ {
+ level = ((level / 100) * 100) + Config.SKILL_MAX_ENCHANT_LIMIT_LEVEL;
+ fixedSkill = SkillTable.getInstance().getInfo(id, level);
+ }
+ }
+ else if (Config.SKILL_MAX_ENCHANT_LIMIT_LEVEL == 0) // Remove enchantment
+ {
+ level = SkillTable.getInstance().getMaxLevel(id);
+ fixedSkill = SkillTable.getInstance().getInfo(id, level);
+ }
+ // Setting the new level enchat for the skill.
+ if (fixedSkill != null)
+ {
+ _log.info("Decreasing skill enchantment from " + oldLevel + " to " + level + " on skill " + id + " from Player: " + getName() + "!");
+ addSkill(fixedSkill, true);
+ }
+ }
+ 
  if (level >= 100)
  {
  level = SkillTable.getInstance().getMaxLevel(id);

 

9 answers to this question

Recommended Posts

  • 0
Posted
5 hours ago, l2fire said:

Hello, how to make max skill enchant for l2jfrozen?

I want to make max skill enchant to +12

I have found code for l2jserver but i dont know where can add code to l2pcinstance.java

 

 

 

My eyes have never faced l2j forzen, but i guess there is gotta be a client packet for skill enchant. You can search it and give a check to its functionality. As far as i remember, the packet is called RequestEnchantSkill.java or something. Search your client packets. I am pretty sure you will be guided.

  • 0
Posted

according to their latest source in 2016 (that I would never recommend using for live server)

here https://app.assembla.com/spaces/L2jFrozenInterlude/subversion/source/HEAD/gameserver/trunk/head-src/com/l2jfrozen/gameserver/model/actor/instance/L2FolkInstance.java

in line 233-234 add the following
 

the concept is to not show the skill in skill list of enchantment if its level is >= to 12, not tested should work if not this is where you make your changes so you can figure it out.

if (s.getLevel() >= 12)
{
	continue;
}

it will be like that

if (sk == null)
{
  continue;
}
if (s.getLevel() >= 12)
{
  continue;
}
counts++; 
  • 0
Posted
1 hour ago, Nightw0lf said:

according to their latest source in 2016 (that I would never recommend using for live server)

here https://app.assembla.com/spaces/L2jFrozenInterlude/subversion/source/HEAD/gameserver/trunk/head-src/com/l2jfrozen/gameserver/model/actor/instance/L2FolkInstance.java

in line 233-234 add the following
 

the concept is to not show the skill in skill list of enchantment if its level is >= to 12, not tested should work if not this is where you make your changes so you can figure it out.


if (s.getLevel() >= 12)
{
	continue;
}

it will be like that


if (sk == null)
{
  continue;
}
if (s.getLevel() >= 12)
{
  continue;
}
counts++; 

 

 

dont work this

Photo

  • 0
Posted (edited)

that means there was no more available skills to enchant did you try to clean your skills?

try to make that change in line 127 and remove the previous change

Edited by Nightw0lf
  • 0
Posted
12 minutes ago, Nightw0lf said:

that means there was no more available skills to enchant did you try to clean your skills?

try to make that change in line 127 and remove the previous change

Dont work.

Nothing to show about my message i can enchant till +12 +13 

  • 0
Posted

thats the easy way but if he decide to change or add donate skills he will not be able thats why i tried this, btw i got an email today from l2jfrozen as i think many of us old users did frozen is on sale xD

Guest
This topic is now closed to further replies.


  • Posts

    • Vesper Noble heavy set (RAR) 1800 att - 150e Eternal Core Dualsword +6 300 att 130e Ring of Baium 130e AQ ring 100e Antharas Earring 200e   Paypal payments only DM in discord narttu123
    • L2REBORN x10 - 1gb - 4.2$ l2reborn x1 ( signature ) - 1kk - 1.3$ LU4 - 1kk - 2.3$ MASTERWORRK - 1kk - 3.8kk  discord - adver745645
    • Hello, Skill Activation: The activation options from the Alt+K window work perfectly. However, when activating them from the skill bar, there is still a delay of approximately 1 second. I need to remove that delay
    • --- Interlude Faction/GvE PvP grand opening 2025-11-15 19:00 GMT+2 ---   Gameplay: Chronicle: Interlude Type: Faction/GvE (Angels vs Nature vs Demons) GM Shop: B-S grade Buff slots: 20+4 Starting level: 74 + rebirth system   New Features: Client: Modern interface based on Essence Balance: New class skills for better balance Achievement Rewards: Daily, Weekly, One-time TOP rankings: PvP, Event PvP, Map PvP, Clan PvP, Event MvP, Map MvP Zones: 70 different PvP zones,  18 different events (8 map events | 10 main events) 12 Grand/raid bosses. Castle siege Olympiad Clan Hall challenge Custom Enchant System: Dynamic success chance (greater enchant level or item grade less enchanting success chance) Enchant rate: Blessed scrolls dynamic from 100% to 25%. Crystal Scrolls: 100%; Max enchant weapon +12 Max enchant armor +8 Safe point enchant system Extra Features: PvP items with level upgrade Weapon/Armor upgrade (from B grade to S) system Attributes system   Website: https://l2cygnus.com Community: Discord Facebook: https://www.facebook.com/l2cygnus Youtube:   
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock