Autor Tema: [Sources] OffSet Invisible Wings - main 1.4e  (Leído 2703 veces)

Applayo

  • Newbie
  • *
  • Mensajes: 40
  • : 2
  • Applayo
    • Ver Perfil
[Sources] OffSet Invisible Wings - main 1.4e
« en: Abril 21, 2021, 12:35:01 pm »


[hide post=1 login=1]em Interface.cpp, procure por "void Interface::work()" e adicione o seguinte:
Código: [Seleccionar]
      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:

Código: [Seleccionar]
   bool boolVar;
   DWORD timeboolVar;
[/hide]
Tecla para Ativar ou Desativar: F7

Creditos: Denis Alves
            Applayo por Demo
« Última modificación: Abril 21, 2021, 04:01:34 pm por Applayo »

robins1998

  • Newbie
  • *
  • Mensajes: 40
  • : 0
    • Ver Perfil
Re: [Sources] OffSet Invisible Wings - main 1.4e
« Respuesta #1 en: Mayo 27, 2021, 02:41:54 am »
Very helpful, thanks for sharing.