TheReal_Flo_
TheReal_Flo_
TTCTheo's Typesafe Cult
Created by Hinata on 2/1/2025 in #questions
T3 Chat
Still a pretty solid deal for 8 bucks a month
27 replies
TTCTheo's Typesafe Cult
Created by Hinata on 2/1/2025 in #questions
T3 Chat
Combined
27 replies
TTCTheo's Typesafe Cult
Created by Hinata on 2/1/2025 in #questions
T3 Chat
Not yet
27 replies
TTCTheo's Typesafe Cult
Created by Hinata on 2/1/2025 in #questions
T3 Chat
No description
27 replies
DIAdiscord.js - Imagine an app
Created by TheReal_Flo_ on 7/8/2024 in #djs-voice
Bot not connecting to voice channel
Huh, so, can I ping the voice chat servers somehow on their relevant UDP Port to confirm myself that it's not a Firewall issue?
7 replies
DIAdiscord.js - Imagine an app
Created by TheReal_Flo_ on 7/8/2024 in #djs-voice
Bot not connecting to voice channel
Also, it's kinda strange, that the issue started both on my local machine and on my server... Could it be, that Discords starts blocking bots from using Voice chats randomly?
7 replies
DIAdiscord.js - Imagine an app
Created by TheReal_Flo_ on 7/8/2024 in #djs-voice
Bot not connecting to voice channel
I disabled my Server's Firewall completely to check, also no faulty connection, as I have about 0.8ms Ping to the Voice Region I was in
7 replies
DIAdiscord.js - Imagine an app
Created by TheReal_Flo_ on 7/8/2024 in #djs-voice
Bot not connecting to voice channel
// Create a new client instance
const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates] });
// Log in to Discord with your client's token
client.login(argv.dev ? process.env.DISCORD_TOKEN_DEV : process.env.DISCORD_TOKEN);
// Create a new client instance
const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates] });
// Log in to Discord with your client's token
client.login(argv.dev ? process.env.DISCORD_TOKEN_DEV : process.env.DISCORD_TOKEN);
const channel = interaction.member.voice.channel;

console.log(channel.guild);

if (!channel) return interaction.reply('You are not connected to a voice channel!'); // make sure we have a voice channel

const connection = joinVoiceChannel({
channelId: channel.id,
guildId: channel.guild.id,
adapterCreator: channel.guild.voiceAdapterCreator,
});
const channel = interaction.member.voice.channel;

console.log(channel.guild);

if (!channel) return interaction.reply('You are not connected to a voice channel!'); // make sure we have a voice channel

const connection = joinVoiceChannel({
channelId: channel.id,
guildId: channel.guild.id,
adapterCreator: channel.guild.voiceAdapterCreator,
});
7 replies
DIAdiscord.js - Imagine an app
Created by TheReal_Flo_ on 7/8/2024 in #djs-voice
Bot not connecting to voice channel
Discord.js version: [email protected] Node version: v22.1.0 Voice version: 0.17.0 No stack trace, just stuck on signalling
7 replies