Package l2p.loginserver.gameservercon.lspackets

Examples of l2p.loginserver.gameservercon.lspackets.IpAction


  {
    String ip = readS();
    String admin = readS();
    IpManager.getInstance().BanIp(ip, admin, 0, "");
    GSConnection.getInstance().broadcastPacket(new BanIPList());
    GSConnection.getInstance().broadcastPacket(new IpAction(ip, true, admin));
  }
View Full Code Here


  public void read()
  {
    String ip = readS();
    IpManager.getInstance().UnbanIp(ip);
    GSConnection.getInstance().broadcastPacket(new BanIPList());
    GSConnection.getInstance().broadcastPacket(new IpAction(ip, false, ""));
  }
View Full Code Here

TOP

Related Classes of l2p.loginserver.gameservercon.lspackets.IpAction

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.