Jump to content
  • 0

Skill Re-Use Visual Glitch


Question

Posted

Guys, which part of the core is responsible for sending char skill re-use?

 

My problem is: Use skill, open skill tab (alt + k) and you will see ur skill is ready to use again but you can't use because its still on cooldown.

3 answers to this question

Recommended Posts

  • 0
Posted

what about this? anything related to skillcooltime?

public class RequestSkillCoolTime extends L2GameClientPacket
{
    L2GameClient _client;
    
    @Override
    public void readImpl()
    {
        _client = getClient();
    }
    
    @Override
    public void runImpl()
    {
        final L2PcInstance pl = _client.getActiveChar();
        if (pl != null)
            pl.sendPacket(new SkillCoolTime(pl));
    }
    
    @Override
    public String getType()
    {
        return "[C] 0xa6 RequestSkillCoolTime";
    }
}
  • 0
Posted (edited)

It's of no use in both IL (not even implemented) and l2p type forks. Probably deprecated. And sending SkillCoolTime directly avoids a pointless "layer".

Edited by Tryskell

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...