Jump to content
  • 0

Question

Posted

Hello how are you?. I need help please to implement this mod. What happens is when I try to ask for a skill in the npc, it throws me a critic that says to update the files that are defective.

I pass some of what I have to see if someone can help me. Thank you!.

RebirthEngineConfig
-----------------------

 

package l2r;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;

import l2r.gameserver.util.Util;

import gr.sr.configsEngine.AbstractConfigs;
import gr.sr.utils.L2Properties;

/**
 * @author vGodFather
 */
public class RebirthEngineConfigs extends AbstractConfigs
{
   private static final String CONFIG_FILE = "./config/extra/rebirth.ini";
   
   public static int REBIRTH_MIN_LEVEL;
   public static int REBIRTH_MAX;
   public static int REBIRTH_RETURN_TO_LEVEL;
   public static List<Integer> REBIRTH_SKILL_IDS;
   public static int REBIRTH_SKILL_SELLER_ID;
   public static String[] REBIRTH_ITEMS;
   
   @Override
   public void loadConfigs()
   {
      // Load Server L2Properties file (if exists)
      L2Properties rebirth = new L2Properties();
      final File file = new File(CONFIG_FILE);
      try (InputStream is = new FileInputStream(file))
      {
         rebirth.load(is);
      }
      catch (Exception e)
      {
         _log.error("Error while loading rebirth system settings!", e);
      }
      
      REBIRTH_SKILL_SELLER_ID = Integer.parseInt(rebirth.getProperty("RebirthSkillSellerId", "500"));
      REBIRTH_MIN_LEVEL = Integer.parseInt(rebirth.getProperty("RebirthMinLevel", "78"));
      REBIRTH_MAX = Integer.parseInt(rebirth.getProperty("RebirthMaxAllowed", "3"));
      REBIRTH_RETURN_TO_LEVEL = Integer.parseInt(rebirth.getProperty("RebirthReturnToLevel", "1"));
      REBIRTH_ITEMS = rebirth.getProperty("RebirthItems", "").split(";");
      
      String[] ids = rebirth.getProperty("RebirthSkillIds", "90045,90046,90047,90048,90049,90050,90051,90052,90053,90054,90055,90056,90057,90058,90059,90060,90061,90062,90063,90064").split(",");
      REBIRTH_SKILL_IDS = new ArrayList<>(ids.length);
      for (String id : ids)
      {
         if (Util.isDigit(id))
         {
            REBIRTH_SKILL_IDS.add(Integer.parseInt(id));
         }
         else
         {
            _log.warn("Wrong skill id format (RebirthSkillIds) rebirth.ini");
         }
      }
   }
   
   public static RebirthEngineConfigs getInstance()
   {
      return SingletonHolder._instance;
   }
   
   private static class SingletonHolder
   {
      protected static final RebirthEngineConfigs _instance = new RebirthEngineConfigs();
   }
}

FILE SKILLGROUP.dat
-------------
90045    1    14    2    0    4294967295    0    0.00000000    0            icon2.skill1240        0    0    0    a,none\0    0    -1    -1    0    a,none\0
90045    2    14    2    0    4294967295    0    0.00000000    0            icon2.skill1240        0    0    0    a,none\0    0    -1    -1    0    a,none\0
90045    3    14    2    0    4294967295    0    0.00000000    0            icon2.skill1240        0    0    0    a,none\0    0    -1    -1    0    a,none\0

continue.....



90045    1    a,XbCustom Rebirth Skill Guidance\0    a,Increases Accuracy 5%.\0    a,none\0    a,none\0
90045    2    a,XbCustom Rebirth Skill Guidance\0    a,Increases Accuracy 10%.\0    a,none\0    a,none\0
90045    3    a,XbCustom Rebirth Skill Guidance\0    a,Increases Accuracy 15%.\0    a,none\0    a,none\0



I found what is the problem, it was a texture error. Buy  when y try to get a skill i get an message, Wrong Packet Data in Aquired Skill. Does anybody an idea how to resolve it?.

2 answers to this question

Recommended Posts

Guest
This topic is now closed to further replies.


  • Posts

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..