> For the complete documentation index, see [llms.txt](https://docs.drakodevelopment.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.drakodevelopment.net/addon-system/premium-addons/sticky-messages.md).

# Sticky Messages

**💰 Pricing:**

* **Obfuscated Version:** $5.99
* **Full Source:** $17.99

**📦 What It Does:**

* Allows you to create sticky messages that stay at the top of your channel.

**📜 Commands:**

* **/Sticky List:** View all sticky messages.
* **/Sticky Delete:** Remove a sticky message.
* **/Sticky Message:** Create sticky messages on the go.
* **/Sticky Config:** Configure and post predefined embeds and messages.

**🌟 Features:**

* **Link Button:** Add buttons to embeds that link to external sources.
* **Reply Button:** Replies with a predefined embed or message
* **Easy Management:** Create, configure, and manage sticky messages via commands and configuration.

**🛠️ Configuration Example:**

{% code expandable="true" %}

```yaml
AllowRoles: ["ROLE_ID", "ROLE_ID"] # who can use the command

Embed:
  List:
    Title: "Existing Sticky Messages"
    Color: "#000000"
    Image: "https://i.imgur.com/DF3p5Sv.png"
    Thumbnail: "https://i.imgur.com/w5XxKpc.png"
    Author:
      Text: ""
      Icon: "https://i.imgur.com/w5XxKpc.png"
    Footer:
      Text: "Drako Bot - Addon - Sticky Messages"
      Icon: "https://i.imgur.com/w5XxKpc.png"

StickyMessages:
  LeaveAReview:
    Enabled: true
    TriggerCount: 5
    Type: "EMBED" # EMBED OR TEXT
    Message: "This is a sticky message!" # If Type is TEXT
    Embed:  # If Type is EMBED
      Title: ""
      Description:
        - ""
      Fields:
        - Name: ""
          Value: ""
          Inline: true
      Image: "https://i.imgur.com/3eGfpfv.png"
      Thumbnail: ""
      Author:
        Text: "BuiltByBit"
        Icon: "https://i.imgur.com/arfQNGC.png"
        Url: "https://builtbybit.com/resources/drako-bot-multi-purpose-discord-bot.22266/"
      Footer:
        Text: "Drako Bot - Addon - Sticky Messages"
        Icon: "https://i.imgur.com/w5XxKpc.png"
      Color: "#000000"
    Buttons: # YOU HAVE TO FOLLOW THIS FORMAT, DONT EDIT THE STRUCTURE
      1: 
        Type: "LINK" # LINK, REPLY
        Style: "Link" # Primary, Secondary, Success, Danger
        Text: "Leave us a review"
        Emoji: "" # If blank then none
        Link: "https://builtbybit.com/resources/drako-bot-multi-purpose-discord-bot.22266/?ref=discover" # If using LINK button type
        Reply:
          Type: "EMBED" # TEXT OR EMBED
          Message: ""
          Embed:  # If Type is EMBED
            Title: ""
            Description:
              - ""
            Fields:
              - Name: ""
                Value: ""
                Inline: false
              - Name: ""
                Value: ""
                Inline: false
            Image: ""
            Thumbnail: ""
            Author:
              Text: ""
              Icon: ""
              Url: "https://i.imgur.com/w5XxKpc.png"
            Footer:
              Text: ""
              Icon: ""
            Color: "#000000"
      2: 
        Type: "REPLY" # LINK, REPLY
        Style: "Secondary" # Primary, Secondary, Success, Danger
        Text: "Click me!"
        Emoji: "" # If blank then none
        Link: "" # If using LINK button type
        Reply:
          Type: "EMBED" # TEXT OR EMBED
          Message: "By leaving a review, our products can reach more people."
          Embed:  # If Type is EMBED
            Title: "We Value Your Feedback"
            Description:
              - "Thank you for choosing our products. Your feedback is incredibly important to us and helps our products reach more customers like you."
              - "Please consider leaving a review!"
            Fields:
              - Name: "Quick Review Tips"
                Value: "• Be honest and precise.\n• Include how you use the product.\n• Mention what you liked or disliked."
                Inline: false
            Image: "https://i.imgur.com/3eGfpfv.png"
            Thumbnail: "https://i.imgur.com/w5XxKpc.png"
            Author:
              Text: "Customer Service Team"
              Icon: "https://i.imgur.com/w5XxKpc.png"
              Url: "https://i.imgur.com/w5XxKpc.png"
            Footer:
              Text: "Thank you for your support!"
              Icon: "https://i.imgur.com/w5XxKpc.png"
            Color: "#000000"
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.drakodevelopment.net/addon-system/premium-addons/sticky-messages.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
