void Misc::ClanTagChanger()
{
if (!g_EngineClient->IsInGame() || !g_EngineClient->IsConnected())
return;
if (!Settings.misc_clantag)
return;
static size_t lastTime = 0;
if (GetTickCount() > lastTime)
{
Reflective += Reflective.at(0);
Reflective.erase(0, 1);
Utils::SetClantag(Reflective.c_str());
lastTime = GetTickCount() + 650;
}
}