Package net.sf.l2j.loginserver.serverpackets

Examples of net.sf.l2j.loginserver.serverpackets.AccountKicked


        break;
      case INVALID_PASSWORD:
        client.close(LoginFailReason.REASON_USER_OR_PASS_WRONG);
        break;
      case ACCOUNT_BANNED:
        client.close(new AccountKicked(AccountKickedReason.REASON_PERMANENTLY_BANNED));
        break;
      case ALREADY_ON_LS:
        L2LoginClient oldClient;
        if ((oldClient = lc.getAuthedClient(_user)) != null)
        {
View Full Code Here

TOP

Related Classes of net.sf.l2j.loginserver.serverpackets.AccountKicked

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.