-
Автор темы
- #1
Суть в том что в коде есть chat spammer при нажатии, я сделал копию всех переменных и добавил, но при нажатии он просто спамит, а я бы хотел чтобы он это делал при смерти игрока, что нужно правильно вписать? в этом коде?
Код:
void misc::ChatSpammer()
{
if (!g_cfg.misc.chat)
return;
static std::string chatspam[] =
{
crypt_str("1 текст"),
crypt_str("2 текст"),
crypt_str("3 текс"),
crypt_str("4 текст"),
};
static auto lastspammed = 0;
if (GetTickCount() - lastspammed > 800)
{
lastspammed = GetTickCount();
srand(m_globals()->m_tickcount);
std::string msg = crypt_str("say ") + chatspam[rand() % 4];
m_engine()->ExecuteClientCmd(msg.c_str());
}
}