1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-10 09:22:49 +00:00

NPC Chatting

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-25 02:38:15 -03:00
parent ad6a2e89d2
commit 7033518023
21 changed files with 613 additions and 75 deletions

View File

@@ -45,6 +45,12 @@ public class NPCHtmlMessagePacket extends AbstractServerPacket {
*/
private final String html;
public NPCHtmlMessagePacket(NPC npc, String html) {
super(OPCODE);
this.npc = npc;
this.html = html;
}
public NPCHtmlMessagePacket(NPC npc, Html html) {
super(OPCODE);
this.npc = npc;