Skip to content

$filterMessage

$filterMessage will filter certain characters out of given text.

Usage

$filterMessage[text;...letters]

Parameters

FieldTypeDescriptionRequired
textstringText input which will be filtered.true
lettersstringContent you want to filter out of the text.true

Example(s)

This will remove the N of Never and return ever:

1
client.command({
2
name: "filterMessage",
3
code: `
4
$filterMessage[Never;N]
5
`
6
});