• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Word filter

Itutorial

Legendary OT User
Joined
Dec 23, 2014
Messages
2,461
Solutions
68
Reaction score
1,123
Need help figuring out how to block words from being used anywhere in a sentence.

-thanks
 
Last edited:
...

tfs 1.1 10.77

In the xml you write all the words that cannot be used and link it to this file:

Code:
local sentence = {"Chat filter has detected an illegal word."}

function onSay(cid, words, param, channel)
    if player:getAccess():getGroupId() < 3 then
        player:sendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, sentence)
    return true
end
return true
end

but I think think this will stop them from using the word in sentences.

Like they cant just say fuck

but if they put

stfu you fucking cunt

They would be able to say that because its not the first word used.
 
Back
Top