Jump to content
  • 0

Max skill enchant limit


l2fire

Question

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);

 

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0
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.

Link to comment
Share on other sites

  • 0

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++; 
Link to comment
Share on other sites

  • 0
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

Link to comment
Share on other sites

  • 0

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
Link to comment
Share on other sites

  • 0
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 

Link to comment
Share on other sites

  • 0

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

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...