вы можете создать окно вывода с помощью функции ImGui::BeginChild() и выводить сообщения с помощью ImGui::Text() или ImGui::TextWrapped()
static char outputMessage[1024] = "";
static bool outputMessageSet = false;
if (ImGui::Button("Enter Key"))
{
if (buff == "DEBUG_FOREVER")
{
alert("thx for buy cheat");
}
else
{
alert("wrong key");
outputMessageSet = true;
snprintf(outputMessage, 1024, "Wrong Key: %s", buff.c_str());
}
}
ImGui::BeginChild("Output");
if (outputMessageSet)
{
ImGui::TextWrapped(outputMessage);
}
ImGui::EndChild();
Исходный код: https://disk.yandex.ru/d/Qds7FxJEfdGMYQ