Cuberite Forum
More Chat Support? - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Plugins (https://forum.cuberite.org/forum-1.html)
+--- Forum: Plugin Discussion (https://forum.cuberite.org/forum-8.html)
+--- Thread: More Chat Support? (/thread-2983.html)



More Chat Support? - djlw78 - 06-27-2017

Is there a way to capture the out going message?

Example: 
  • Check to see what the message starts with "Example lowercase"
  • Replace the chat message
It would be nice to be able to do this.


RE: More Chat Support? - NiLSPACE - 06-27-2017

You can use the OnChat hook to do that.
For example you can use this to make the first character uppercase:
function OnChat(a_Player, a_Message)
	a_Message = (a_Message:gsub("^%l", string.upper))
	return false, a_Message
end



RE: More Chat Support? - djlw78 - 06-28-2017

Did you use regex for "^%l"