/// <summary> /// Send a message to chat from local player /// </summary> /// <param name="message">the message to send, only the first 63 characters will be shown</param> public static void SendChatMessage(string message) { MemoryEditor.WriteInt(CHAT_OPEN, 0); MemoryEditor.WriteString(CHATMESSAGE, message); }