$guildSplash
$guildSplash will return a guild’s invite background (if unlocked).
Usage
$guildSplash[guildID?;size?;dynamic?;extension?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
| size? | number | The size of the image. | false |
| dynamic? | boolean | 1. true (default) 2. false | false |
| extension? | string | Image format. | false |
Example(s)
This will return the guild’s invite background (if unlocked):
1client.command({2 name: "guildSplash",3 code: `4 $guildSplash[$guildID]5 `6});