Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.

Builder Utilities

SonMooSans edited this page Aug 4, 2022 · 1 revision

BJDA also has some Utilities to create Message, Embed, Action Row, Buttons and more.
It can give you a better quality of code.

Embed

embed(
    title = "Title",
    author = author(
        name = "MONEY"
    )
)

Action Row

Row(
    Button.primary(
        id = "__todo-create",
        label = "Add Todo"
    )
)

Message

message {
    content("Hello World")
}

event.reply {
    content("Do you sure?")
    
    embed(
        title = "Delete the Item",
        color = Color.RED
    )
    
    row(
        Button.danger(
            label = "Delete"
        )
    )
}.queue()