Skip to content

$clientMutualGuilds

$clientMutualGuilds will return the mutual servers with a given user and the bot.

Usage

$clientMutualGuilds[userID?;sep?]

Parameters

FieldTypeDescriptionRequired
userID?numberThe ID of the user.false
sep?stringThe separator to separate the returned values.false

Example(s)

This will return the mutual servers of you and the bot:

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