Example #1
0
        public void OnSendKey(SagaLogin.Packets.Client.SendKey p)
        {
            this.netIO.ClientKey = p.GetKey();

            SagaLib.Packets.Server.AskGUID sendPacket = new SagaLib.Packets.Server.AskGUID();
            this.netIO.SendPacket(sendPacket, this.SessionID);
        }
Example #2
0
        // 0x01 and 0x02 Packets =========================================

        public void OnSendKey(SagaMap.Packets.Client.SendKey p)
        {
            if (this.state != SESSION_STATE.NOT_IDENTIFIED)
            {
                return;
            }

            this.netIO.ClientKey = p.GetKey();

            SagaLib.Packets.Server.AskGUID sendPacket = new SagaLib.Packets.Server.AskGUID();
            this.netIO.SendPacket(sendPacket, this.SessionID);
        }
Example #3
0
        // 0x01 and 0x02 Packets =========================================
        public void OnSendKey(SagaMap.Packets.Client.SendKey p)
        {
            if (this.state != SESSION_STATE.NOT_IDENTIFIED) return;

            this.netIO.ClientKey = p.GetKey();

            SagaLib.Packets.Server.AskGUID sendPacket = new SagaLib.Packets.Server.AskGUID();
            this.netIO.SendPacket(sendPacket, this.SessionID);
        }