Skip to content

$guildOwnerID

$guildOwnerID +will return the ID of the server owner, depending on the given argument.

Usage

$guildOwnerID[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe guild ID.false

Example(s)

This will return the ID of the server owner where you execute the command in:

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