Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutorial] Hack Detected remove .bins and restart computer

Junior Spellweaver
Joined
Dec 2, 2012
Messages
146
Reaction score
24
Winmain.cpp

Add
Code:
#include "shellapi.h"

Search
Code:
int win::ProcessSuspended()
{
    if(!bSuspended)
        return FALSE;


    MSG msg;
    while(PeekMessage(&msg, NULL,0,0,PM_NOREMOVE))
    {
        if(!GetMessage (&msg, NULL, 0, 0)) 
            return 1;


        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }


    return TRUE;
}

Find anti pause or class detect etc

Code:
Ex:
DWORD WINAPI AntiPause() // By Yuri-BR
{
    DWORD TimeTest1=0, TimeTest2=0;
    while(true)
    {
        TimeTest1 = TimeTest2;
        TimeTest2 = GetTickCount();
        if(TimeTest1 != 0)
        {
            Sleep(1000);
            if((TimeTest2-TimeTest1) > 5000)
            {
                ExitProcess(0);
                TerminateProcess(GetCurrentProcess(),0);
               [COLOR="#FF0000"][B]ShellExecute(NULL, "open", "hackdetect.bat", NULL, NULL, SW_SHOWDEFAULT);[/B][/COLOR]
            }
        }        
    }
    return 0;
}

Save and build

hackdetect.rar extract your bin files and add rsbuild.xml


View attachment hackdetect.rar
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Sep 3, 2013
Messages
49
Reaction score
13
damn dude you're one heck of a coder
dunno what the duck this is, but it is definitely not detecting shells or anything related to hacking lol

 
Back
Top