Examples of ChangeAccessLevel


Examples of net.sf.l2j.loginserver.gameserverpackets.ChangeAccessLevel

  private void onReceiveChangeAccessLevel(byte[] data)
  {
    if (isAuthed())
    {
      ChangeAccessLevel cal = new ChangeAccessLevel(data);
      LoginController.getInstance().setAccountAccessLevel(cal.getAccount(),cal.getLevel());
      _log.info("Changed "+cal.getAccount()+" access level to "+cal.getLevel());
    }
    else
    {
      forceClose(LoginServerFail.NOT_AUTHED);
    }
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.