public void AccountLogout(uint accountID, T client)
        {
            long session = Global.PacketSession;
            //packetSessions.Add(session, client);

            CM_ACCOUNT_LOGOUT p = new CM_ACCOUNT_LOGOUT()
            {
                SessionID = session,
                AccountID = accountID
            };

            Network.SendPacket(p);
        }
Beispiel #2
0
 public void OnAccountLogout(CM_ACCOUNT_LOGOUT p)
 {
     AccountManager.Instance.AccountLogout(p.AccountID);
 }