Examples of NetPingPacket


Examples of lineage2.gameserver.network.serverpackets.NetPingPacket

  public boolean useVoicedCommand(String command, Player activeChar, String target)
  {
    if (command.equals("ping"))
    {
      activeChar.sendMessage("Processing request...");
      activeChar.sendPacket(new NetPingPacket(activeChar));
      ThreadPoolManager.getInstance().schedule(new AnswerTask(activeChar), 3000L);
      return true;
    }
    return false;
  }
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.