You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried making a simple echoing to echo back my voice in discord. Basically is looks like it does below.
and it doesn't ever write to line or echo anything back to me even tho he is already in the voice channel. Any help would be great!
Tried making a simple echoing to echo back my voice in discord. Basically is looks like it does below.
and it doesn't ever write to line or echo anything back to me even tho he is already in the voice channel. Any help would be great!
client.ConnectToVoiceChannel(client.GetChannelByName("Other"));
client.AudioPacketReceived += (sender, e) =>
{
Console.WriteLine("Audio Packet Recieved");
DiscordAudioPacket audio = new DiscordAudioPacket(e.OpusAudio);
client.EchoPacket(audio);
};
The text was updated successfully, but these errors were encountered: