- 141
- 6
Ещё раз привет, это конечно нубовский урок но поверьте мне есть такие нубы/новички которые ещё незнают как сделать данный флудер, код в cheat_generic.cpp
By Norma_Cheater For BlastHack.Net
Код:
void cheat_handle_capture ()
{
traceLastFunc( "cheat_handle_capture()" );
if ( KEY_PRESSED(set.key_capture) )
{
cheat_state->_generic.capture ^= 1;
}
if( cheat_state->_generic.capture == 1 )
{
static DWORD time = 0;
if (GetTickCount() - 1000 > time)
{
say("/capture");
time = GetTickCount();
}
return;
}
}