PDA

View Full Version : |Source| OffSet Invisible Wings



StevenDX
23/02/2021, 10:14 PM
Porfavor si un moderador puede traducir y poner el video en previsualización, gracias

VIDEO DE PARA QUE SIRVE XD, YA CADA UNO LE DARA EL USO QUE MAS LE CONVENGA, DESDE INCORPORARLO COMO ANTILAG, O FIXEAR ALGUNOS BUGS
:),

[Only registered and activated users can see links]



OFF SET
**Hidden Content: Check the thread to see hidden data.**


CRÉDITOS : StevenDX

Ravoc
24/02/2021, 12:13 AM
Um conteúdo bom, mas presente em todas as Src febres atuais, como Takumi12, Kosh e Denis Alves!

Com um conhecimento bem básico vocês conseguem criar um sistema AntLag por teclas, vou procurar em meu MEGA.NZ e postar o complemento para vocês!

StevenDX
24/02/2021, 10:55 PM
PARA LOS QUE ESTABAN PIDIENDO ESTO PARA UN ANTILAG, AQUI SE LOS DEJO SEMI ARMADO


[Only registered and activated users can see links]
F7-> DISABLE WINGS
F8->ENABLE WINGS


AntilagT.h
**Hidden Content: Check the thread to see hidden data.**


AntilagT.cpp
**Hidden Content: Check the thread to see hidden data.**




Interface.cpp
**Hidden Content: Check the thread to see hidden data.**
**Hidden Content: Check the thread to see hidden data.**

Denis Alves
25/02/2021, 08:57 AM
Vamos melhorar isso pra uso em uma tecla??

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