Knightly updated MQ2Discord with a new update entry:
02/28/2026
Read the rest of this update entry...
02/28/2026
Read the rest of this update entry...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Thanks for the pings, I haven't been around the forums as much lately and the DMs and Discord messages definitely helped get my attention on this.
Try the latest update and let me know. The first issue is that the RedGuides reference to the MQ2Discord repo was moved under RedGuides on github and not all of the current code for MQ2Discord was in that repository. That pulled in a bug (regression) from curl that I haven't updated vcpkg to handle yet, which would have broken MQ2Discord on its own, outside of everything else.
brainiac merged in the current MQ2Discord code to the RedGuides code and I suspect that will fix everything since it was working before that repo change. But if not, I'm around to look at it now.
Ok np! thank you for all the hard workat the time that i write this a new update hasn't been put out yet
std::string messageResponse = client.sendMessage(kvp.first, kvp.second).text;
std::string messageResponse = client.sendMessage(kvp.first, kvp.second, SleepyDiscord::Sync).text;
Cool, thanks! Does that also fix the problems actually sending commands sometimes? Not sure if you were experiencing those.This fixes the failed to send errors for me. In DiscordClient.h at line 504
change it from
Code:std::string messageResponse = client.sendMessage(kvp.first, kvp.second).text;
to this
Code:std::string messageResponse = client.sendMessage(kvp.first, kvp.second, SleepyDiscord::Sync).text;
Cool, thanks! Does that also fix the problems actually sending commands sometimes? Not sure if you were experiencing those.
