完全不知道错在什么地方[C++] 纯文本查看 复制代码 #include "Includes.h"
#include "Triggerbot.h"
#include "HackProcess.h"
#include "CheatManager.h"
#include "ReadProcessMemory.h"
#include "Aimbot.h"
#include "GlowEsp.h"
#include <stdio.h>
#include "Misc.h"
#include <Windows.h>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#define _CRT_SECURE_NO_WARNINGS
InitMemory Init;
Offsets O;
CheatManager CM;
MemoryRead Read;
Triggerbot Tr;
Aimbot Am;
Glow G;
Misc Mi;
// 1- 9
using namespace std;
int main(void)
{
SetConsoleTitle("666");
Init.StartMemory();
CM.InitializeCheat();
CM.write_info();
while (!CM.Shutdown)
{
Mi.RenderChange();
Mi.RadarHack();
Mi.RankReveal();
CM.Options();
Mi.Bhop();
G.GlowEsp();
Sleep(1);
Read.GetAll();
Tr.TriggerBot(0x04);
Am.Run();
}
FreeConsole();
return 0;
}
int EntryThread(void)
{
AllocConsole();
FILE* fp;
freopen_s(&fp, "CONOUT$", "w", stdout);
return main();
}
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hModule);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)EntryThread, 0, 0, 0);
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
|