Question ImGui InputText

SomeGuy19

Always Legit.
Newbie
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