Jump to content
  • 0

L2j Problem with L2PCInstance


Question

Posted

i have one problem with l2j gameserver (instances. L2PCinstance) when every player log in game lose all skills active and passive..

 

this is the file (i just added a part of the problem)

 

// Remove a skill from the L2Character and its Func objects from calculator set of the L2Character
        final L2Skill oldSkill = super.removeSkill(skill);
        if (oldSkill != null)
        {
            Connection con = null;
            try
            {
                // Remove or update a L2PcInstance skill from the character_skills table of the database
                con = L2DatabaseFactory.getInstance().getConnection();
                PreparedStatement statement = con.prepareStatement(DELETE_SKILL_FROM_CHAR);
                
                statement.setInt(1, oldSkill.getId());
                statement.setInt(2, getObjectId());
                statement.setInt(3, getClassIndex());
                statement.execute();
                statement.close();
            }
            catch (Exception e)
            {
                _log.log(Level.WARNING, "Error could not delete skill: " + e.getMessage(), e);
            }
            finally
            {
                L2DatabaseFactory.close(con);
            }
        }
        
        if (transformId() > 0 || isCursedWeaponEquipped())
            return oldSkill;
        
        final L2ShortCut[] allShortCuts = getAllShortCuts();
        for (L2ShortCut sc : allShortCuts)
        {
            if ((sc != null) && (skill != null) && (sc.getId() == skill.getId()) && (sc.getType() == L2ShortCut.TYPE_SKILL)
                && !(skill.getId() >= 3080 && skill.getId() <= 3259)) // FIXME: Rough fix for shortcuts of augments getting removed. Find a better way
                deleteShortCut(sc.getSlot(), sc.getPage());
        }
        return oldSkill;
    }
    

 

Here my gameserver errors when i log in - ingame problem:

 

1)l2servproblem1.png

 

2)l2servproblem2.png

 

i hope i gave all the infos to have a respone.. if i am not right reply me what other to upload ... any answer is weclome.

Recommended Posts

  • 0
Posted

i have one problem with l2j gameserver (instances. L2PCinstance) when every player log in game lose all skills active and passive..

 

this is the file (i just added a part of the problem)

 

// Remove a skill from the L2Character and its Func objects from calculator set of the L2Character
        final L2Skill oldSkill = super.removeSkill(skill);
        if (oldSkill != null)
        {
            Connection con = null;
            try
            {
                // Remove or update a L2PcInstance skill from the character_skills table of the database
                con = L2DatabaseFactory.getInstance().getConnection();
                PreparedStatement statement = con.prepareStatement(DELETE_SKILL_FROM_CHAR);
                
                statement.setInt(1, oldSkill.getId());
                statement.setInt(2, getObjectId());
                statement.setInt(3, getClassIndex());
                statement.execute();
                statement.close();
            }
            catch (Exception e)
            {
                _log.log(Level.WARNING, "Error could not delete skill: " + e.getMessage(), e);
            }
            finally
            {
                L2DatabaseFactory.close(con);
            }
        }
        
        if (transformId() > 0 || isCursedWeaponEquipped())
            return oldSkill;
        
        final L2ShortCut[] allShortCuts = getAllShortCuts();
        for (L2ShortCut sc : allShortCuts)
        {
            if ((sc != null) && (skill != null) && (sc.getId() == skill.getId()) && (sc.getType() == L2ShortCut.TYPE_SKILL)
                && !(skill.getId() >= 3080 && skill.getId() <= 3259)) // FIXME: Rough fix for shortcuts of augments getting removed. Find a better way
                deleteShortCut(sc.getSlot(), sc.getPage());
        }
        return oldSkill;
    }
    

 

Here my gameserver errors when i log in - ingame problem:

 

1)l2servproblem1.png

 

2)l2servproblem2.png

 

i hope i gave all the infos to have a respone.. if i am not right reply me what other to upload ... any answer is weclome.

  • 0
Posted

i have one problem with l2j gameserver (instances. L2PCinstance) when every player log in game lose all skills active and passive..

 

this is the file (i just added a part of the problem)

 

// Remove a skill from the L2Character and its Func objects from calculator set of the L2Character
        final L2Skill oldSkill = super.removeSkill(skill);
        if (oldSkill != null)
        {
            Connection con = null;
            try
            {
                // Remove or update a L2PcInstance skill from the character_skills table of the database
                con = L2DatabaseFactory.getInstance().getConnection();
                PreparedStatement statement = con.prepareStatement(DELETE_SKILL_FROM_CHAR);
                
                statement.setInt(1, oldSkill.getId());
                statement.setInt(2, getObjectId());
                statement.setInt(3, getClassIndex());
                statement.execute();
                statement.close();
            }
            catch (Exception e)
            {
                _log.log(Level.WARNING, "Error could not delete skill: " + e.getMessage(), e);
            }
            finally
            {
                L2DatabaseFactory.close(con);
            }
        }
        
        if (transformId() > 0 || isCursedWeaponEquipped())
            return oldSkill;
        
        final L2ShortCut[] allShortCuts = getAllShortCuts();
        for (L2ShortCut sc : allShortCuts)
        {
            if ((sc != null) && (skill != null) && (sc.getId() == skill.getId()) && (sc.getType() == L2ShortCut.TYPE_SKILL)
                && !(skill.getId() >= 3080 && skill.getId() <= 3259)) // FIXME: Rough fix for shortcuts of augments getting removed. Find a better way
                deleteShortCut(sc.getSlot(), sc.getPage());
        }
        return oldSkill;
    }
    

 

Here my gameserver errors when i log in - ingame problem:

 

1)l2servproblem1.png

 

2)l2servproblem2.png

 

i hope i gave all the infos to have a respone.. if i am not right reply me what other to upload ... any answer is weclome.

  • 0
Posted

The error is pretty self-explanatory, you have an NPE. First things first: add an NPE fix, and secondly, find out whats causing your NPE, you really just have to look at what you wrote to find it.

Secondly, this is not the area for questions.

  • 0
Posted

The error is pretty self-explanatory, you have an NPE. First things first: add an NPE fix, and secondly, find out whats causing your NPE, you really just have to look at what you wrote to find it.

Secondly, this is not the area for questions.

  • 0
Posted

The error is pretty self-explanatory, you have an NPE. First things first: add an NPE fix, and secondly, find out whats causing your NPE, you really just have to look at what you wrote to find it.

Secondly, this is not the area for questions.

  • 0
Posted

The error is pretty self-explanatory, you have an NPE. First things first: add an NPE fix, and secondly, find out whats causing your NPE, you really just have to look at what you wrote to find it.

Secondly, this is not the area for questions.

 

your answer is welcome anyway, but little missed.. explain me little better if is possible, maybe i am newbie :P also give me some infos about where i can add this kind of posts... thanks

  • 0
Posted

The error is pretty self-explanatory, you have an NPE. First things first: add an NPE fix, and secondly, find out whats causing your NPE, you really just have to look at what you wrote to find it.

Secondly, this is not the area for questions.

 

your answer is welcome anyway, but little missed.. explain me little better if is possible, maybe i am newbie :P also give me some infos about where i can add this kind of posts... thanks

  • 0
Posted

The error is pretty self-explanatory, you have an NPE. First things first: add an NPE fix, and secondly, find out whats causing your NPE, you really just have to look at what you wrote to find it.

Secondly, this is not the area for questions.

 

your answer is welcome anyway, but little missed.. explain me little better if is possible, maybe i am newbie :P also give me some infos about where i can add this kind of posts... thanks

  • 0
Posted

Somehow: it can't restore skills.

 

As you can't restore skills, it doesn't fill skills array.

As skills array isn't filled, skills array is still null and so when it goes deeper it finds nothing, so you got a NPE.

 

The problem isn't the NPE, it's why it can't restore skills.

 

PS : your empty skills window is normal, as array is null.

PS2 : I would check the method which restore skills. It got nothing with removeSkill() method. It's about character loading. Search with error description "could not restore character" using ctrl+H.

  • 0
Posted

Somehow: it can't restore skills.

 

As you can't restore skills, it doesn't fill skills array.

As skills array isn't filled, skills array is still null and so when it goes deeper it finds nothing, so you got a NPE.

 

The problem isn't the NPE, it's why it can't restore skills.

 

PS : your empty skills window is normal, as array is null.

PS2 : I would check the method which restore skills. It got nothing with removeSkill() method. It's about character loading. Search with error description "could not restore character" using ctrl+H.

  • 0
Posted

Somehow: it can't restore skills.

 

As you can't restore skills, it doesn't fill skills array.

As skills array isn't filled, skills array is still null and so when it goes deeper it finds nothing, so you got a NPE.

 

The problem isn't the NPE, it's why it can't restore skills.

 

PS : your empty skills window is normal, as array is null.

PS2 : I would check the method which restore skills. It got nothing with removeSkill() method. It's about character loading. Search with error description "could not restore character" using ctrl+H.

  • 0
Posted

Somehow: it can't restore skills.

 

As you can't restore skills, it doesn't fill skills array.

As skills array isn't filled, skills array is still null and so when it goes deeper it finds nothing, so you got a NPE.

 

 

 

The problem isn't the NPE, it's why it can't restore skills.

 

PS : your empty skills window is normal, as array is null.

PS2 : I would check the method which restore skills. It got nothing with removeSkill() method. It's about character loading. Search with error description "could not restore character" using ctrl+H.

 

 

Your answer seems good, can you tell me please which file to open to search for that?

  • 0
Posted

If I used yellow in previous answer, that was to avoid to repeat myself.

 

i asked you for wich file name i have to search... my name is thepwned yes my name is thepwned but that can't give you full sentence about who i am.... BTW if you're not borred to write me the file name i'll get it as intention.. Thanks.

  • 0
Posted

Search with error description "could not restore character" using ctrl+H.

 

If u dont know whch file is it, u can start with L2PcInstance.

Guest
This topic is now closed to further replies.


  • Posts

    • I decided to write some beautiful custom fantasy stories about the beautiful world of Lineage 2 and its oldschool territories. Fictional theme, not related to the real lore of Lineage 2. Besides, everyone has read the real ones. Whenever I have a new story I will post. So without further delay:   The Boat Blessed by Einhasad (Story written by me, proof-reading only by AI) Part 1: The Stranger and Einhasad One beautiful morning, Orcis the clan leader and Chapan, the beautiful female bishop, were sitting in Giran Harbor waiting for the boat. "I have a feeling that this will be a great day, beautiful lady," Orcis told Chapan. The boat arrived, and on top of it stood a stranger. "Ahoy, fellas!" he called out, giving them a high five. "Ahoy... stranger," replied Chapan. "What brings you to this boat?" asked the stranger. "We want to travel the world," said Chapan. "And we want to conquer it all," added Orcis. The stranger looked at them both and said, "I'm in a good mood today, so I will share something with you. Einhasad came to me yesterday and gave me wisdom—wisdom that will let you explore and allow you to conquer. Here, let me show you." The stranger stepped off the boat. Then he stepped back on. He lifted his right foot to step off again, but he didn't; he only pretended to, stepping right back onto the boat instead. He repeated the motion with his right foot again and again. Orcis and Chapan laughed, but the ferryman was furious. "Why are you pretending to disembark while staying on the boat?" shouted the ferryman. "Stop being a fool and either stay on or off! You're making me dizzy acting like a clown!" The stranger stepped off the boat. As he was escorted away from the furious ferryman, he whispered to Chapan, "You can do this dance too. It's funny—try it." As the ferryman and the stranger walked away, Orcis and Chapan started doing the foolish move. They stepped onto the boat, pretended to return to shore, only to place their foot back on the boat at the last moment. They did it many times and had great fun. As they were playing through this crazy dance routine on the boat, something magical happened: Einhasad appeared in front of them. "I see you have found wisdom," Einhasad said. "I will allow you your wisdom, but you are never to step on the boat more than 127 times. And you must never go to the man who lives forever alone on the Primeval Isle, for he can see through your dance and will not like it." Einhasad vanished, the boat departed, and our comedic duo continued their journey... Part 2: The Greatest Healer and the Castle Lord Two days later, a boat arrived at Rune Harbor. Off it stepped an orc and a healer. "You take the town, lady—find a mercenary to help you. I will go take the castle," said the orc. A couple of minutes later, the lone orc appeared at a siege-battered castle. The defenders were repairing the fortress after successfully repelling an attacking force. They saw the orc walking toward the castle with small, steady steps and laughed at him. "Who dares walk against the mightiest clan alone?" The orc continued on his path until he was close to the defenders. Bows were armed; swords were unsheathed. The defenders lunged at the orc, only to find it impossible to hit him. Their weapons could not touch his skin or armor and were instantly repelled. They chased behind the orc, who proceeded into the engraving room and began commune with the artifact, all while the defenders tried in vain to slash and blunt him. Nothing landed—not a single blow. The orc was casting as peacefully as if he were in town, completely uninterrupted. "Masters, masters!" a voice shouted. "I bring bad news from the city! There is a female healer—she came with an orc and a mercenary. They killed the guards, wiped out our force, and took over the city!" "How could that be?" said the castle masters, momentarily forgetting that an orc was actively taking their castle. "The healer, masters! The healer—she can't be killed! Our swords slip right off her armor!" Before they could respond, the engraving completed. "I am now your master, your voice, your ruler," the orc declared. "Bow before me, for I am blessed by Einhasad and I am immortal!" Part 3: The Sanctuary of Primeval Isle Three days later, a female human healer stepped off the boat onto Primeval Isle. She had fool-stepped on the boat 126 times now, taking care never to exceed 127—for as Einhasad had warned, doing so would make her mortal again. "I seek the ruler of this island, for he is to bow before me," she announced. Suddenly, an arrow flew through the dense foliage of Primeval Isle. It pierced straight through the healer's armor and crushed her to the ground. As her eyes closed in her final moments, she heard the voice of Einhasad echo the old warning given to them days ago: "Primeval Isle is sacred. The man who lives there forever has made it so—for I might not have given him wisdom, but I have given him luck." The End   The Man at Primeval Isle Word reached the newly crowned King of the Aden territory—Orcis the Orc—about the tragic end of his beloved Chapan, who had dared to set foot upon the fog-shrouded shores of Primeval Isle. A thousand bards sang in the grand halls, yet not a single melody could soothe the sovereign's profound rage and grief. Days bled into weeks. The court watched their ruler wither in inconsolable silence, until a lone traveler requested an audience at the castle gates. "My Lord," the captain of the guard announced, kneeling before the throne. "A wanderer demands entry. He claims to hold the key to the island." "The island?" Orcis grunted, his voice like grinding stone. "He speaks of a way to walk upon those cursed sands untouched by mortality... and to face the solitary warden who governs the primeval wild." "Bring him in," ordered the King. When the stranger approached the dais, Orcis instantly recognized the weathered face. It was the enigmatic figure from Giran Harbor—the nomad who had first taught them the strange ritual of steps that granted them divine immunity. The wanderer bowed low, but Orcis raised a hand. "Rise, old friend. This kingdom was forged on the strange wisdom you shared. Speak. What do you know of the island’s master?" The stranger leaned in, his eyes gleaming with secret knowledge. "The warden believes his sanctuary is absolute, my King—that the ancient currents protecting his domain cannot be broken by the dance of the harbor," the stranger whispered. "Yet in his pride, he misjudged the rhythm of the crossing. He guards against those who linger in the threshold...   ... but he never foresaw what happens when the voyage comes to its absolute end."
  • 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..