$isEveryoneMentioned
$isEveryoneMentioned will check if everyone or here is mentioned.
Usage
$isEveryoneMentionedExample(s)
This will check if you mentioned @here or @everyone:
1client.command({2 name: "isEveryoneMentioned",3 code: `4 You did not mention @ everyone!5 $onlyIf[$isEveryoneMentioned==false;You tried to mention @ everyone!]6 `7});