Posts: 1,586
Threads: 85
Joined: Apr 2011
Reputation:
0
Currently there is no filter in game, there probably should be
Posts: 1,012
Threads: 94
Joined: May 2011
Reputation:
0
How about we just rely on people reporting, so it will be easier to code up a report button.
Posts: 2,531
Threads: 300
Joined: Apr 2011
Reputation:
0
The host of the server should be the one to do as the host pleases to take action. If the host allows an unfiltered environment, then it should be that way, but with warning in regards to the server.
The host takes care of the server and should have the rules, so that is how it is.
Posts: 2,843
Threads: 382
Joined: Jul 2012
Reputation:
0
What if I changed the Chatted event so you can return a string to change the message, or false to block it entirely? Then if somebody wants filters, they can code it themselves (should just be a simple string replacement.)
Posts: 5,683
Threads: 413
Joined: Aug 2012
Reputation:
0
If you're going to have a string replacement, you can code it to be random.
[lua]
local strings = {"FAILZOR", "NOOB", "FAILISM", "ROBLAWKED"}
FilterChat(strings[math.random(1, #strings)])
[/lua]