Devvvvvv
Devvvvvv
Explore posts from servers
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
if theres any workaround or alternative bot or ANYTHING 😭😭😭
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
no workaround? i really dont want to implement temproles by myseld
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
cant figure that out
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
like the carlbot/dynobot should react to prefix commands from my bot
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
is there any way for my bot to use a carlbot or a dyno bot command and not get ignored?
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
i figured this out a while back so thanks 😀
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
i dont get it :c isnt there a simpler dirty hack where i can just write a button inside the reply?? something like this
const { Command } = require('@sapphire/framework');

class PingCommand extends Command {
constructor(context, options) {
super(context, {
...options,
name: 'ping',
aliases: ['pong'],
description: 'ping pong'
});
}

async messageRun(message) {
await message.channel.send('Ping?', components: [
new MessageActionRow().addComponents(
new MessageButton()......... whatever
);
]);
}
}
module.exports = {
PingCommand
};
const { Command } = require('@sapphire/framework');

class PingCommand extends Command {
constructor(context, options) {
super(context, {
...options,
name: 'ping',
aliases: ['pong'],
description: 'ping pong'
});
}

async messageRun(message) {
await message.channel.send('Ping?', components: [
new MessageActionRow().addComponents(
new MessageButton()......... whatever
);
]);
}
}
module.exports = {
PingCommand
};
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
reminds me of type declaration in pyton even though it diesnt affect 😭
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
oh no 😭 is like the laughing in pain kind of thing ive worked with js a lot before so ive checked out ts but its just taht im super new to discord bot and this framework is very new to me too
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
I just wanted a reply to one of my commands to have a button and for starters the button on click can get the bot to say hi
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
i will go through this now
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
okay this is so helpful
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
they are all typescript 😭 and I still dont get how the interaction handler works for this situation
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
oo free freference
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
😭 😭 😭 😭 😭 😭 😭
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
im still struggling to figure out how I can get a button to be with a message as a reply
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/20/2024 in #sapphire-support
Cannot find how I can use buttons
I understand that it will be a component of a message reply, I just dont get how the syntax goes, the documentation is also doesnt show it
29 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/19/2024 in #sapphire-support
slashcommand wont appear
yes yes did taht the logs of the cli said that it registered 4 commands but none of them worked in the server
43 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/19/2024 in #sapphire-support
slashcommand wont appear
and sub commands too
43 replies
SIASapphire - Imagine a framework
Created by Devvvvvv on 5/19/2024 in #sapphire-support
slashcommand wont appear
normal commands work when i do this still gotta try slash commands
43 replies