Beispiel #1
0
        public override void Handle()
        {
            var code = XmlRead.GetAttribute("code");

            if (code == "1")
            {
                Bot.ConnectToGame(); // next game server
            }
        }
Beispiel #2
0
        public override void Handle()
        {
            var s = XmlRead.GetAttribute("s");

            Log.Information("{0}: {1} - {2}", Bot?.Login, "RadioList", s);
        }
Beispiel #3
0
        public override void Handle()
        {
            var t = XmlRead.GetAttribute("t");

            Log.Information("{0}: {1} - {2}", Bot?.Login, "Z", t);
        }
Beispiel #4
0
 public override void Handle()
 {
     Bot.ChatServer = XmlRead.GetAttribute("server");
     Bot.ConnectToChat();
 }
Beispiel #5
0
        public override void Handle()
        {
            Bot.Key = XmlRead.GetAttribute("key");

            Bot.TryLogin();
        }
Beispiel #6
0
        public override void Handle()
        {
            Bot.Ses = XmlRead.GetAttribute("ses");

            Connection.SendData(new ChatPacketOut());
        }