Examples of Player2ndAuthSetBanTime


Examples of lineage2.gameserver.network.loginservercon.gspackets.Player2ndAuthSetBanTime

   * Method insertBanTime.
   * @param banTime int
   */
  public void insertBanTime(int banTime)
  {
    LoginServerCommunication.getInstance().sendPacket(new Player2ndAuthSetBanTime(_activeClient.getLogin(), banTime));
    _unBanTime = System.currentTimeMillis() + (banTime * 60000);
  }
 
View Full Code Here

Examples of lineage2.loginserver.gameservercon.gspackets.Player2ndAuthSetBanTime

          break;
        case 0x16:
          packet = new Player2ndAuthSetAttempts();
          break;
        case 0x17:
          packet = new Player2ndAuthSetBanTime();
          break;
        case 0xff:
          packet = new PingResponse();
          break;
        default:
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.