Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.TutorialShowHtml


    {
      _log.warning("missing html page data/scripts/quests/255_Tutorial/" + html);
      text = "<html><body>File data/scripts/quests/255_Tutorial/" + html + " not found or file is empty.</body></html>";
    }

    getPlayer().sendPacket(new TutorialShowHtml(text));
    text = null;
  }
View Full Code Here


              text = text.replace("%Word%", output);
            }
         
          }

          L2PcInstance.this.sendPacket(new TutorialShowHtml(text));

          if(_taskKickBot == null)
          {
            _stopKickBotTask = false;
            _taskKickBot = ThreadPoolManager.getInstance().scheduleGeneral(new kickBot(), 10);
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.TutorialShowHtml

Copyright © 2018 www.massapicom. 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.