Examples of NpcHtmlMessage

  • l2p.gameserver.serverpackets.NpcHtmlMessage
  • lineage2.gameserver.network.serverpackets.NpcHtmlMessage
    the HTML parser in the client knowns these standard and non-standard tags and attributes VOLUMN UNKNOWN UL U TT TR TITLE TEXTCODE TEXTAREA TD TABLE SUP SUB STRIKE SPIN SELECT RIGHT PRE P OPTION OL MULTIEDIT LI LEFT INPUT IMG I HTML H7 H6 H5 H4 H3 H2 H1 FONT EXTEND EDIT COMMENT COMBOBOX CENTER BUTTON BR BODY BAR ADDRESS A SEL LIST VAR FORE READONL ROWS VALIGN FIXWIDTH BORDERCOLORLI BORDERCOLORDA BORDERCOLOR BORDER BGCOLOR BACKGROUND ALIGN VALU READONLY MULTIPLE SELECTED TYP TYPE MAXLENGTH CHECKED SRC Y X QUERYDELAY NOSCROLLBAR IMGSRC B FG SIZE FACE COLOR DEFFON DEFFIXEDFONT WIDTH VALUE TOOLTIP NAME MIN MAX HEIGHT DISABLED ALIGN MSG LINK HREF ACTION ClassId fstring
  • net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage
    the HTML parser in the client knowns these standard and non-standard tags and attributes VOLUMN UNKNOWN UL U TT TR TITLE TEXTCODE TEXTAREA TD TABLE SUP SUB STRIKE SPIN SELECT RIGHT PRE P OPTION OL MULTIEDIT LI LEFT INPUT IMG I HTML H7 H6 H5 H4 H3 H2 H1 FONT EXTEND EDIT COMMENT COMBOBOX CENTER BUTTON BR BODY BAR ADDRESS A SEL LIST VAR FORE READONL ROWS VALIGN FIXWIDTH BORDERCOLORLI BORDERCOLORDA BORDERCOLOR BORDER BGCOLOR BACKGROUND ALIGN VALU READONLY MULTIPLE SELECTED TYP TYPE MAXLENGTH CHECKED SRC Y X QUERYDELAY NOSCROLLBAR IMGSRC B FG SIZE FACE COLOR DEFFON DEFFIXEDFONT WIDTH VALUE TOOLTIP NAME MIN MAX HEIGHT DISABLED ALIGN MSG LINK HREF ACTION @version $Revision: 1.3.2.1.2.3 $ $Date: 2005/03/27 15:29:57 $

  • Examples of net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage

          if(npcId > 0)
          {
            reLoadNpcDropList(npcId);

            NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
            TextBuilder replyMSG = new TextBuilder("<html><title>Drop data modify complete!</title>");
            replyMSG.append("<body>");
            replyMSG.append("<center><button value=\"DropList\" action=\"bypass -h admin_show_droplist "+ npcId + "\" width=100 height=15 back=\"sek.cbui94\" fore=\"sek.cbui92\"></center>");
            replyMSG.append("</body></html>");

            adminReply.setHtml(replyMSG.toString());
            activeChar.sendPacket(adminReply);
          }
          else
            activeChar.sendMessage("unknown error!");
        }
    View Full Code Here

    Examples of net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage

          statement.execute();
          statement.close();

          reLoadNpcDropList(npcId);

          NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
          TextBuilder replyMSG = new TextBuilder("<html><title>Add drop data complete!</title>");
          replyMSG.append("<body>");
          replyMSG.append("<center><button value=\"Continue add\" action=\"bypass -h admin_add_drop "+ npcId + "\" width=100 height=15 back=\"sek.cbui94\" fore=\"sek.cbui92\">");
          replyMSG.append("<br><br><button value=\"DropList\" action=\"bypass -h admin_show_droplist "+ npcId + "\" width=100 height=15 back=\"sek.cbui94\" fore=\"sek.cbui92\">");
          replyMSG.append("</center></body></html>");

          adminReply.setHtml(replyMSG.toString());
          activeChar.sendPacket(adminReply);
        }
        catch(Exception e){}
        finally
        {
    View Full Code Here

    Examples of net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage

            statement2.execute();
            statement2.close();

            reLoadNpcDropList(npcId);

            NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
            TextBuilder replyMSG = new TextBuilder("<html><title>Delete drop data(" + npcId+", "+ itemId+", "+ category + ")complete</title>");
            replyMSG.append("<body>");
            replyMSG.append("<center><button value=\"DropList\" action=\"bypass -h admin_show_droplist "+ npcId + "\" width=100 height=15 back=\"sek.cbui94\" fore=\"sek.cbui92\"></center>");
            replyMSG.append("</body></html>");

            adminReply.setHtml(replyMSG.toString());
            activeChar.sendPacket(adminReply);

          }
        }
        catch(Exception e){}
    View Full Code Here

    Examples of net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage

            htmlContent.append("</table><table width=\"270\" border=\"0\">");
            htmlContent.append("<tr><td>" + penaltyStr + "</td></tr>");
            htmlContent.append("</table></center>");
            htmlContent.append("</body></html>");

            NpcHtmlMessage penaltyHtml = new NpcHtmlMessage(0);
            penaltyHtml.setHtml(htmlContent.toString());
            activeChar.sendPacket(penaltyHtml);

            return true;
        }
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. All rights reserved.
    All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.