Jump to content
  • 0

Npc chat funtion


audriuziz

Question

Hello, on acis my multishop only show first html windows. Not show's other chats, anyone can help?


 

public void showChatWindow(Player player, int val)
{
final NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
html.setFile("data/html/mods/donateNpc/" + getNpcId()+ (val == 0 ? "" : "-" + val) + ".htm");
html.replace("%objectId%", getObjectId());
player.sendPacket(html);
}

 

image.JPEG

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Your custom NPC must correctly override onBypassFeedback, using a

if (command.equalsIgnoreCase("whateverCustomCommand")
{

}
else
       super.onBypassFeedBack....

The super.onBypassFeedBack sends the client to "basic" NPC commands, such as Chat. Before the super.onBypass, you can put any new custom commands you want using if / else if / else if / else if /....

 

Almost all, if not all, Folk (new name for old L2NpcInstance) derivated NPCs act similar, I invite you to read about them to see what they can override.

 

If it's not working, I invite you to read about Chat command and how it's implemented on bypasses of existing HTMs (tip : there are 936 results in more than 800 files), because you probably made an error writting it.

Edited by Tryskell
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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...