Ejemplo n.º 1
0
 public void PrintMessageToClient(string text, System.Drawing.Color color)
 {
     string finalText = String.Format("<font color=\"#{0}\">{1}</font>", System.Drawing.ColorTranslator.ToHtml(color), text);
     TextInformationMessage msg = new TextInformationMessage(0, 0, new string[1] { finalText });
     m_bot.SendToClient(msg);
 }