-Implemented new cubics & cubic skills.
-Fixed some visual bugs (character see removed cubic, not see seed talisman aura until re-equip talisman). -Removed unused packet ExGetBossRecord (I forgot remove this in my raid points patch). Contributed by NviX.
This commit is contained in:
@ -1,64 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2015 L2J Server
|
||||
*
|
||||
* This file is part of L2J Server.
|
||||
*
|
||||
* L2J Server is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* L2J Server is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.l2jserver.gameserver.network.serverpackets;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author KenM
|
||||
*/
|
||||
public class ExGetBossRecord extends L2GameServerPacket
|
||||
{
|
||||
private final Map<Integer, Integer> _bossRecordInfo;
|
||||
private final int _ranking;
|
||||
private final int _totalPoints;
|
||||
|
||||
public ExGetBossRecord(int ranking, int totalScore, Map<Integer, Integer> list)
|
||||
{
|
||||
_ranking = ranking;
|
||||
_totalPoints = totalScore;
|
||||
_bossRecordInfo = list;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void writeImpl()
|
||||
{
|
||||
writeC(0xFE);
|
||||
writeH(0x34);
|
||||
writeD(_ranking);
|
||||
writeD(_totalPoints);
|
||||
if (_bossRecordInfo == null)
|
||||
{
|
||||
writeD(0x00);
|
||||
writeD(0x00);
|
||||
writeD(0x00);
|
||||
writeD(0x00);
|
||||
}
|
||||
else
|
||||
{
|
||||
writeD(_bossRecordInfo.size()); // list size
|
||||
for (int bossId : _bossRecordInfo.keySet())
|
||||
{
|
||||
writeD(bossId);
|
||||
writeD(_bossRecordInfo.get(bossId));
|
||||
writeD(0x00); // ??
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -86,6 +86,10 @@ public class UserInfo extends AbstractMaskPacket<UserInfoType>
|
||||
{
|
||||
addComponentType(UserInfoType.values());
|
||||
}
|
||||
// Visual Fix
|
||||
_activeChar.sendPacket(new ExUserInfoEquipSlot(_activeChar));
|
||||
_activeChar.sendPacket(new ExUserInfoCubic(_activeChar));
|
||||
_activeChar.sendPacket(new ExUserInfoAbnormalVisualEffect(_activeChar));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user