Examples of TutorialShowHtml


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

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

              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

Examples of l2p.gameserver.serverpackets.TutorialShowHtml

    String text = Files.read("data/scripts/quests/_255_Tutorial/" + html, player);
    if(text == null || text.equalsIgnoreCase(""))
    {
      text = "<html><body>File data/scripts/quests/_255_Tutorial/" + html + " not found or file is empty.</body></html>";
    }
    player.sendPacket(new TutorialShowHtml(text));
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.TutorialShowHtml

    String text = html;
    if (type == 1)
    {
      text = HtmCache.getInstance().getNotNull("quests/_255_Tutorial/" + html, player);
    }
    player.sendPacket(new TutorialShowHtml(text, type));
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.TutorialShowHtml

  {
    final int itemId = item.getItemId();
    switch (itemId)
    {
      case 32777:
        playable.getPlayer().sendPacket(new TutorialShowHtml(TutorialShowHtml.GUIDE_ADVENTURER, 0x02));
        break;
      case 32778:
        playable.getPlayer().sendPacket(new TutorialShowHtml(TutorialShowHtml.GUIDE_AWAKING, 0x02));
        break;
      default:
        return false;
    }
    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.