quote:
Originally posted by roflmao456
code:
ChatWnd.SendMessage("Message \n example");
This is getting a bit picky, but if you do that the message will be formatted with extra spaces. If you wanted it to look like how somebody would actually type it, the code would look like this:
code:
ChatWnd.SendMessage("Message\nexample");
The "\n" will still be replaced.