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

    • Some new features that we added: - 2 new quests - PvP Arena (to get hero status) Olympiad is disabled - Love Event - Dressme for armor/weapons/accessories - HWID Protection - More monsters - New farm zone - New autofarm system (works almost like adrenaline) - Auto enchant - Auto augment - 3 levels of armors - 3 levels of weapons - Anti KS System - Rebirth Manager - 30 days checking rewards - Small event (daily checking with small reward for all online players)
    • Added FloodProtector utility to prevent packet flooding for actions like item use and dice rolling. Integrated flood protection checks in relevant client packet handlers and registered/removal hooks in player lifecycle. Updated movement logic in L2PcInstance for improved position synchronization and geodata handling. Minor fixes and refactoring in attack logic, private store handling, and admin NPC editing. Refactored AI classes to enhance movement, attack, and skill usage logic for characters and mobs. Improved distance checks, attack range calculations, and skill casting conditions. Removed unused intention command logic from L2CharacterAI. Updated configuration to enable CellPathFinding. Minor code cleanups and bug fixes for more reliable AI behavior. Enhanced GeoPathFinding with detailed debug and error messages for region loading, including success/failure counts and file checks. Refactored L2AttackableAI and L2CharacterAI to improve attack range tolerance, immediate attack behavior, and added safety checks for missing targets. Updated configuration to disable CellPathFinding by default and added a new ShowRedName option for aggressive mobs. Minor config and log updates included. Applied TCP socket optimizations (e.g., TCP_NODELAY, buffer sizes, keepalive) in ClientThread, Connection, and SelectorThread to reduce latency and improve throughput. Enhanced L2AttackableAI with better random walk, aggro, and attack logic, including silent move checks, quest monster handling, and improved faction/raid/minion behavior. Added silent move support to L2PlayableInstance and quest monster flag to L2NpcTemplate/L2NpcInstance. These changes aim to improve server responsiveness, AI realism, and overall stability.
    • I’ve been using this Escape from Tarkov Hack for about a week now with no issues at all. ESP works great without any lag, and the aimbot is smooth and doesn't feel obvious. Had a quick setup with the loader, and support answered my questions right away. The HWID spoofer also did its job without messing with my system. So far, the cheat's staying undetected on my side.
  • 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