$guildOwnerID
$guildOwnerID will return the ID of the server owner, depending on the given argument.
Usage
$guildOwnerID[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The guild ID. | false |
Example(s)
This will return the ID of the server owner where you execute the command in:
1client.command({2 name: "guildOwnerID",3 code: `4 $guildOwnerID[$guildID]5 `6});