Bow normal attack with shift key pressed not work

Issue #280 new
ShinichiYao created an issue

It should be launching a normal hit if target is inside attack range and stay still if target out of attack range.

Comments (3)

  1. ShinichiYao reporter

    I don't see any fix code in l2jdevs.

    Its in src/main/java/com/l2jserver/gameserver/network/clientpackets/AttackRequest.java

        protected void readImpl()
        {
            _objectId = readD();
            _originX = readD();
            _originY = readD();
            _originZ = readD();
            _attackId = readC(); // 0 for simple click 1 for shift-click
        }
    

    _attackId never de handled.

  2. Log in to comment