Examples of LockAccountIP


Examples of l2p.gameserver.loginservercon.gspackets.LockAccountIP

        return false;
      }
      time = Math.min(time, 60 * 60 * 24 * 14);
      if(param[0].equalsIgnoreCase("on"))
      {
        LSConnection.getInstance().sendPacket(new LockAccountIP(activeChar.getAccountName(), ip, time));
        activeChar.sendMessage("Account locked.");
        return true;
      }
      if(param[0].equalsIgnoreCase("off"))
      {
        LSConnection.getInstance().sendPacket(new LockAccountIP(activeChar.getAccountName(), "*", -1));
        activeChar.sendMessage("Account unlocked.");
        return true;
      }
    }
    showDefaultPage(activeChar);
View Full Code Here

Examples of l2p.loginserver.gameservercon.gspackets.LockAccountIP

          break;
        case 0x0a:
          packet = new UnbanIP(data, gameserver);
          break;
        case 0x0b:
          packet = new LockAccountIP(data, gameserver);
          break;
        case 0x0c:
          packet = new MoveCharToAcc(data, gameserver);
          break;
        case 0x0d:
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.