Skip to content

$createSticker

$createSticker will create a sticker.

Usage

$createSticker[guildID;URL;name;returnSticker?;tags;description;reason]

Parameters

FieldTypeDescriptionRequired
guildIDnumberGuild ID of where the sticker will be created in.true
URLstringImage URL (png only).true
namestringThe sticker name.true
returnSticker?booleanReturn the sticker after its creation.
1. true
2. false (default)
false
tags?stringSticker tags.false
description?stringThe description of the sticker.false
reason?stringReason that will be displayed in the guild’s audit logs.false

Example(s)

This will create a sticker called Imagine:

1
client.command({
2
name: "createSticker",
3
code: `
4
$createSticker[$guildID;https://cdn.discordapp.com/attachments/1061712111052521493/1066397675278323734/692445926480150611.png;Imagine;true;money;Random sticker;Testing.]
5
`
6
});