Esempio n. 1
0
        public static bool SendChannelMessage(ushort channelId, SpeakTypes type, string message)
        {
            ChatChannel channel = GetChannelById(channelId);

            if (channel == null)
            {
                return(false);
            }

            channel.SendToAll(message, type);
            return(true);
        }