예제 #1
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
        public void OnLobbyChatEnter(string message)
        {
            if (Program.GameStarted)
            {
                return;
            }

            if (message != null && message.Length > 0)
            {
                Console.WriteLine("lobby chat message: " + message);
                SteamMatches.SendChatMsg(message);
            }
        }
예제 #2
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
 public void Spectate()
 {
     SteamMatches.SendChatMsg("%j0");
 }
예제 #3
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
 public void Join()
 {
     SteamMatches.SendChatMsg("%j1");
 }
예제 #4
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
        public void SelectKingdom(string kingdom)
        {
            string msg = string.Format("%k{0}", kingdom);

            SteamMatches.SendChatMsg(msg);
        }
예제 #5
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
        public void SelectTeam(string team)
        {
            string msg = string.Format("%t{0}", team);

            SteamMatches.SendChatMsg(msg);
        }
예제 #6
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
        public void SendAnnouncement(string message)
        {
            string msg = string.Format("%a{0}", message);

            SteamMatches.SendChatMsg(msg);
        }
예제 #7
0
파일: Lobby.cs 프로젝트: JordanFisher/WAL
 public void SendChat(string msg)
 {
     SteamMatches.SendChatMsg(msg);
 }