Package l2p.gameserver.serverpackets

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

TOP

Related Classes of l2p.gameserver.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.