Skip to content

$isEveryoneMentioned

$isEveryoneMentioned will check if everyone or here is mentioned.

Usage

$isEveryoneMentioned

Example(s)

This will check if you mentioned @here or @everyone:

1
client.command({
2
name: "isEveryoneMentioned",
3
code: `
4
You did not mention @ everyone!
5
$onlyIf[$isEveryoneMentioned==false;You tried to mention @ everyone!]
6
`
7
});