SharpMod.Messages.MessageFunctions.ClientPrint C# (CSharp) Method

ClientPrint() public static method

Prints some text in the clients chat, not colored. It sends a message in order to do so.
public static ClientPrint ( this player, string text ) : void
player this /// Player ///
text string /// Text to print ///
return void
        public static void ClientPrint(this Player player, string text)
        {
            player.SendTextMsgMessage(TextMsgPosition.Chat, text);
        }

Same methods

MessageFunctions::ClientPrint ( this player, string text, object obj ) : void
MessageFunctions