Jump to content
  • 0

offline buffer problem on load


Question

Posted (edited)

Hello folks , well im getting into the point: im facing a problem with offline buffers.
I can set them as offline buffers and work ,but they aren't restoring after restart ,also give a error at system .

 

pics: https://imgur.com/a/unUqNOA

+

 

Spoiler

    private void saveSellerData(L2PcInstance seller){
        Connection con = null;    
        try
        {
            con = L2DatabaseFactory.getInstance().getConnection(false);
            PreparedStatement statement;
            statement = con.prepareStatement("CALL sellbuff_saveSellerData(?,?,?,?)");
            statement.setInt(1, seller.getObjectId());
            statement.setString(2, seller.getTitle());
            statement.setInt(3, seller.getAppearance().getTitleColor());
            statement.setInt(4, seller.getAppearance().getNameColor());
            statement.execute();
            statement.close();
            statement = null;
        }
        catch(Exception e)
        {
            if(Config.ENABLE_ALL_EXCEPTIONS)
                e.printStackTrace();
        }
        finally
        {
            CloseUtil.close(con);
            con = null;
        }
    }
    
    public void restoreSellerData(L2PcInstance seller){
        //int defaultNickColor = 16777215; // white
        //int defaultTitleColor = 16777079; // light blue
        
        Connection con = null;    
        try
        {
            con = L2DatabaseFactory.getInstance().getConnection(false);
            PreparedStatement statement;
            statement = con.prepareStatement("CALL sellbuff_restoreSellerData(?)");
            statement.setInt(1, seller.getObjectId());
            
            ResultSet res = statement.executeQuery();

            while(res.next())
            {
                seller.setTitle(res.getString("lastTitle"));
                seller.getAppearance().setTitleColor(Integer.parseInt(res.getString("lastTitleColor")));
                seller.getAppearance().setNameColor(Integer.parseInt(res.getString("lastNameColor")));
            }
            res.close();
            res = null;
            statement.close();
            statement = null;
        }
        catch(Exception e)
        {
            if(Config.ENABLE_ALL_EXCEPTIONS)
                e.printStackTrace();
        }
        finally
        {
            CloseUtil.close(con);
            con = null;
        }
    }

i can't fine the mistake :/ .. 

thanks.

3.PNG

Edited by Irrelevant

7 answers to this question

Recommended Posts

  • 0
Posted (edited)

In its error it says that parameter 5 has not been specified and that is true because you are only sending 4


Well, according to the code that you have shown, you are calling a store procedure that recive apparently 5 parameters and you are only sending 4 and that is why it is possibly giving you the error in the console

Edited by TGSLineage2
  • Thanks 1
  • 0
Posted

To save or update you can create a button that calls a save method in the database, and to automatically save after a reboot or shutdown, you must go to the shutdown class and call the save method of the buff, that will be the same used for the buttom, for the error in console, check the number of parameters of your stored procedure that you are calling.

  • 0
Posted
12 minutes ago, TGSLineage2 said:

To save or update you can create a button that calls a save method in the database, and to automatically save after a reboot or shutdown, you must go to the shutdown class and call the save method of the buff, that will be the same used for the buttom, for the error in console, check the number of parameters of your stored procedure that you are calling.

already did that

Spoiler

Index: gameserver/head-src/com/l2jfrozen/gameserver/Shutdown.java
===================================================================

        try
         {
-            if ((Config.OFFLINE_TRADE_ENABLE || Config.OFFLINE_CRAFT_ENABLE) && Config.RESTORE_OFFLINERS)
+             if ((Config.OFFLINE_TRADE_ENABLE || Config.OFFLINE_CRAFT_ENABLE || Config.OFFLINE_SELLBUFF_ENABLED) && Config.RESTORE_OFFLINERS)
                 OfflineTradeTable.storeOffliners();
         }

 

  • 0
Posted (edited)

check the number of parameters of this SP sellbuff_saveSellerData
What does this method do?
OfflineTradeTable.storeOffliners ();
Are you sure it works smoothly?
check that if it is running with an alert in the console

Edited by TGSLineage2
  • 0
Posted
2 minutes ago, TGSLineage2 said:

check number of parameters of this SP sellbuff_saveSellerData 
what does this method do?
OfflineTradeTable.storeOffliners();
Are you sure it's running whitout problems?

its l2jfrozen . it use that for offline table in navicat

  • 0
Posted
6 minutes ago, TGSLineage2 said:

In its error it says that parameter 5 has not been specified and that is true because you are only sending 4

OMG you are right ..i am blind !! omg dude ..thanks.. fixed !! pff sorry!!

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