Kord

K

Kord

Join the community to ask questions about Kord and get answers from other members.

Join

Easy way to register commands

Is there an annotation or other way to directly define and associate a command with a function? For example, taken from the wiki: ```kotlin kord.createGuildChatInputCommand(...

`Unresolved reference: int` when creating input command

I'm following the example in the very sparse wiki, but it doesn't seem to be valid anymore (it was last updated over 2 years ago). I get the error Unresolved reference: int, string seems to not show errors though. Any ideas on how to fix this? Or are there any more complex sample projects I could look at? ```kotlin kord.createGuildChatInputCommand( Snowflake(556525343595298817),...

Event when ephemeral message is deleted by user

Hello All is in title, but, if I need to clean some things in memory when a message is deleted, in public interaction, that's simple, but for ephemral interaction. Is there a event to detect that? Thanks...

Menu & Edit response

Hello I'm using a Menu to select element. When I select one element, I'm using response.edit to add an embed. But I have two problems:...

Align field in embed

Hello I have 4 categories to put in an embed. For that, I'm using field. However, I would like to inline the first two together, and the last together....

Interaction option

Hello I'm tried to add an option to a Chat input command, but unable to find how to instantiate the type expected for the option Have you any clue?...

Interaction disable button

Hello How can I disable a button after a click on it?...

Remove old commands

Hello I'm creating a new bot with the same token than my previous one and I would like to delete all registered slash command How can I do that 🤔 ? Thanks...

Is there a way to use Kord with Springboot to login, run a quick command, and logout for an endpoint

I currently have Kord configured with Springboot, although there's one slight obvious hitch in my plan. When the endpoint is called and Kord logs in, it suspends itself (as expected) until I disconnect. This means that Spring Boot just hangs and it doesn't actually complete the rest of the request until I manually stop Spring Boot. Ideally what I would like to do is:...

Extract the thread id from a ThreadCreated message

How do i extract the thread id from a message of type MessageType.ThreadCreated?

Is there a way to get user status?

Is there a way to get user status?

Is there a way to serialize PublicMessageInteractionResponseBehavior ?

Hi there. Is there a way to serialize an instance of PublicMessageInteractionResponseBehavior? it doesn't seem to have an id field...

Understanding default caching behaviour

I'm trying to understand Kord's default caching behaviour and wanted to confirm the "boundness" of the default generator. Kord seems to use a concurrent hash map as a generator by default, which is unbounded, right? KordEx applies a lruCache with a default size of 10000 for messages, which seems wise, but plain Kord doesn't?...

Possible to detect verification level of user?

Is it possible to know if a Guild Member has their mobile phone registered/verified on a server that has moderation level set to highest (which requires verified mobile)?

Change timeout threshold for requests

I'm trying to do some big attachment uploads to Discord (like, around the 100MiB Nitro boosted limit), and sometimes the message create requests just timeout with: ```kotlin io.ktor.client.plugins.HttpRequestTimeoutException: Request timeout has expired [url=https://discord.com/api/v10/channels/.../messages, request_timeout=unknown ms] at io.ktor.client.engine.cio.EndpointKt$setupTimeout$timeoutJob$1.invokeSuspend(Endpoint.kt:307)...

Error Json parsing

Hello ! I have an error with my bot (check in thread) After this, the robot may stop working....

Getting all messages in chronological order

I've been using the MessageChannelBehavior#messages flow (which is documented as being in chronological order) for a while, but always with the default EntitySupplyStrategy (cacheWithRestFallback). Since I now want to grab all messages in the channel, I changed by code from channel.messages.collect { ... } to withStrategy(EntitySupplyStrategy.rest).messages.collect { ... } (I am aware it may be performance intensive), however, messages now come in reverse chronological order.... Any idea what is wrong here?...

Creating channel with permission overwrites yields a "Zero length BigInteger"

I'm creating a guild channel like this: ```kotlin guild.createCategory("name") { addRoleOverwrite(guildId) {...

Import dev.kord.x:emoji

Hello Where is published the latest version of kord emoji ? in maven central the last version in 0.5.0 but in Github, the last release is 0.6.0...

Forcibly getting messages from REST

Hello, I'm running a bot with the default entity supplying strategy (cacheWithRestFallback), but I want to fetch all messages from a channel from REST, to make sure I get everything and not just the ones sent in the bot's current lifetime. Here's what I'm thinking of doing:...