ImGui::Text(XorStr("Custom clan tag"));
ImGui::Separator();
ImGui::Columns(1, NULL, true);
{
ImGui::Spacing(); ImGui::NewLine(); ImGui::SameLine(42.f);
ImGui::InputText(XorStr("##CLANINPUT"), ClanChanger, 127);
}
ImGui::CustomSpacing(6.f); ImGui::NewLine(); ImGui::SameLine(42.f);
if (ImGui::Button(XorStr("Set clan-tag")))
Utils::SetClantag(ClanChanger);
std::string allStringedUp = ClanChanger;
Miscellaneous::Get().gladTag = allStringedUp;
ImGui::Checkbox(XorStr("Animate clantag (If no text, crash!)"), g_Options.misc_animated_clantag);
ImGui::SliderFloat("Clantag Speed", g_Options.clantag_speed, 0.f , 1000.f, "%1.f%");