em Interface.cpp, procure por "void Interface::work()" e adicione o seguinte:
if (GetKeyState(VK_F7) & 0x4000 && GetTickCount() >= gInterface.timeboolVar + 250)
{
if(gInterface.boolVar == true)
{
SetOp(0x00588661,(LPVOID)0x005655C0,ASM::CALL);
gInterface.boolVar = false;
}
else
{
MemorySet(0x588661,0x90,0x5);
gInterface.boolVar = true;
}
gInterface.timeboolVar = GetTickCount();
}
e em Interface.h, procure por "class Interface" e dentro de "public:" adicione:
bool boolVar;
DWORD timeboolVar;
Tecla para Ativar ou Desativar: F7
Creditos: Denis Alves
Applayo por Demo