How i make my custom clantag animation and delay

Начинающий
Статус
Оффлайн
Регистрация
29 Сен 2018
Сообщения
14
Реакции[?]
2
Поинты[?]
0
void Clantag()
{
if (g_Options.misc_clantag && g_LocalPlayer)
{
static std::string text = "Sealsense";
Utils::SetClantag(text.c_str());
}
else if (!g_Options.misc_clantag)
Utils::SetClantag("");
}
 
Забаненный
Статус
Оффлайн
Регистрация
18 Июн 2020
Сообщения
506
Реакции[?]
90
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Забаненный
Статус
Оффлайн
Регистрация
21 Фев 2019
Сообщения
238
Реакции[?]
211
Поинты[?]
1K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Забаненный
Статус
Оффлайн
Регистрация
21 Фев 2019
Сообщения
238
Реакции[?]
211
Поинты[?]
1K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
uWu
 
Забаненный
Статус
Оффлайн
Регистрация
21 Фев 2019
Сообщения
238
Реакции[?]
211
Поинты[?]
1K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пользователь
Статус
Оффлайн
Регистрация
16 Дек 2018
Сообщения
183
Реакции[?]
92
Поинты[?]
0
Hints.
No1. you need a inputbox in your menu that will aim for gladTag.
No2. you need a slider that determines your gladTag's speed in ticks 0-1000.
It is very easy.
 
Начинающий
Статус
Оффлайн
Регистрация
29 Сен 2018
Сообщения
14
Реакции[?]
2
Поинты[?]
0
Пользователь
Статус
Оффлайн
Регистрация
16 Дек 2018
Сообщения
183
Реакции[?]
92
Поинты[?]
0
Right yall need spoonfeed.
ait
Menu.cpp:
Код:
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%");

Miscellaneous.cpp:
Код:
void Miscellaneous::ClanTag()
{
    if (!g_EngineClient->IsInGame() || !g_EngineClient->IsConnected())
        return;

    if (!g_Options.misc_animated_clantag)
        return;

    static size_t lastTime = 0;
    if (GetTickCount() > lastTime)
    {


        gladTag += gladTag.at(0);
        gladTag.erase(0, 1);

        Utils::SetClantag(gladTag.c_str());

        lastTime = GetTickCount() + g_Options.clantag_speed;
    }
  
}
 
Начинающий
Статус
Оффлайн
Регистрация
29 Сен 2018
Сообщения
14
Реакции[?]
2
Поинты[?]
0
Right yall need spoonfeed.
ait
Menu.cpp:
Код:
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%");

Miscellaneous.cpp:
Код:
void Miscellaneous::ClanTag()
{
    if (!g_EngineClient->IsInGame() || !g_EngineClient->IsConnected())
        return;

    if (!g_Options.misc_animated_clantag)
        return;

    static size_t lastTime = 0;
    if (GetTickCount() > lastTime)
    {


        gladTag += gladTag.at(0);
        gladTag.erase(0, 1);

        Utils::SetClantag(gladTag.c_str());

        lastTime = GetTickCount() + g_Options.clantag_speed;
    }
 
}


first i dont the imgui::spacing second i want a animated clantag not a selected clantag you know im talking
 
Пользователь
Статус
Оффлайн
Регистрация
16 Дек 2018
Сообщения
183
Реакции[?]
92
Поинты[?]
0
This code allows you to have:
Custom Static
Custom Animated

Clantag.

literally type the clantag and set if you want to have it animated or not.

-_-

Please if you dont understand coding, dont argue.

 
Начинающий
Статус
Оффлайн
Регистрация
29 Сен 2018
Сообщения
14
Реакции[?]
2
Поинты[?]
0
This code allows you to have:
Custom Static
Custom Animated

Clantag.

literally type the clantag and set if you want to have it animated or not.

-_-

Please if you dont understand coding, dont argue.
i know but i dont want to select a custom animated and a static clantag if i was to rude sorry im learning so ye
 
Сверху Снизу