Instead of "message contains", add a "message contains word", to detect only a word.
Example of why this is important:
This would detect if the message contains THE WORD rape, not if the message contains "rape" on it.
Right now, as skript works, I would have to do this to ban the word rape instead of banning all messages that contains "rape" on it:
In the "rape" example, I would have to add another indent and another "if" with a stop command on the words I don't want to get triggered by the skript.
Example of why this is important:
code_language.skript:
on chat:
if message contains word "rape":
# ban the player
This would detect if the message contains THE WORD rape, not if the message contains "rape" on it.
Right now, as skript works, I would have to do this to ban the word rape instead of banning all messages that contains "rape" on it:
code_language.skript:
on chat:
if message contains "rape":
if message contains "cameraperson" or "drape" or "grape" or "raper" or "parapet" or "skyscraper" or "therapeutic" or "trapeze":
stop
#ban the player