/* * This program 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. This program 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 silentium.gameserver.network.serverpackets; import java.util.ArrayList; import java.util.List; import silentium.gameserver.model.actor.instance.L2PcInstance; import silentium.gameserver.network.SystemMessageId; public class CreatureSay extends L2GameServerPacket { private final int _objectId; private final int _textType; private String _charName = null; private int _charId = 0; private String _text = null; private int _npcString = -1; private List<String> _parameters; public CreatureSay(int objectId, int messageType, String charName, String text) { _objectId = objectId; _textType = messageType; _charName = charName; _text = text; } public CreatureSay(int objectId, int messageType, int charId, SystemMessageId sysString) { _objectId = objectId; _textType = messageType; _charId = charId; _npcString = sysString.getId(); } public void addStringParameter(String text) { if (_parameters == null) _parameters = new ArrayList<>(); _parameters.add(text); } @Override protected final void writeImpl() { writeC(0x4a); writeD(_objectId); writeD(_textType); if (_charName != null) writeS(_charName); else writeD(_charId); writeD(_npcString); // High Five NPCString ID if (_text != null) writeS(_text); else { if (_parameters != null) { for (String s : _parameters) writeS(s); } } } @Override public final void runImpl() { L2PcInstance _pci = getClient().getActiveChar(); if (_pci != null) _pci.broadcastSnoop(_textType, _charName, _text); } }