WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Question ImGui InputText

SomeGuy19

Always Legit.
Newbie

SomeGuy19

Always Legit.
Newbie
Status
Offline
Joined
Jun 13, 2019
Messages
19
Reaction score
4
Hi. I just adding dynamic name and clan tag to cheat. But problem is that when i try to type clantag or name csgo will crash. Someone can help ?

Code:
ImGui::Checkbox("Clantag", &g_Options.misc_clantag);
        if (g_Options.misc_clantag)
            ImGui::InputText("something", g_Options.misc_customclantag, 50);
ImGui::Checkbox("Name", &g_Options.misc_name);
        if(g_Options.misc_name)
            ImGui::InputText("something", g_Options.misc_customname, 50);

g_Options.misc_customclantag and customname are char*.
 
Top