Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › Simple Base [After last patch]

Simple Base [After last patch]

Posts 1–7 of 7 · Page 1 of 1
CheatCreatorzz
CheatCreatorzz
Simple Base [After last patch]
1. Make a Cpp file called whatever you want.

Main.cpp

includes all important files to this source
Code:
#include <windows.h>
#include <iostream>
//LoginCheck, Make a header file called "LoginCheck.h"
#include "LoginCheck.h"
the Hackthread.
Code:
void HackMain (void)
{
	while(1)

	{
		//code here
	}
	Sleep(200);
}
The new VOID, this make the base undetected.
Code:
DWORD WINAPI Runner (LPVOID)

{	
	HackMain(); //your hackthread
	return 1; //return true

}
The DllMain
Code:
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)
	{
	}
    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") && !LogIn)
	{
		DisableThreadLibraryCalls(hDll);
		LogIn = true; Sleep(200); //LoginCheck true
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Runner, NULL, NULL, NULL); //CreateThread start Runner
	}
	return TRUE;
}
2. Add a header file called "LoginCheck".

LoginCheck.h
Code:
bool LogIn = false; //Important "false"
#1 · edited 14y ago · 14y ago
CheatCreatorzz
CheatCreatorzz
Quote Originally Posted by Assassin's Creed View Post
thats mine???

---------- Post added at 02:10 PM ---------- Previous post was at 02:09 PM ----------

are u fucking stupid or wtf...i never share shit with u again..
Credits: CA section - Professor
http://www.mpgh.net/forum/207-combat...mple-hack.html

#2 · edited 14y ago · 14y ago
Assassin's Creed
Assassin's Creed
Quote Originally Posted by CheatCreatorzz View Post


Credits: CA section - Professor
http://www.mpgh.net/forum/207-combat...mple-hack.html

Face Palm dude
this is what he used....:
Code:
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
// DllMain is an optional function for you to declare.
// It serves as the entry point for any DLL
{
	DisableThreadLibraryCalls(hDll);
	// Make a call to DisableThreadLibraryCalls with the hModule variable
	// as its argument; Doing this is an optimization trick to prevent
	// needless thread attach/detach messages from triggering further calls
	// to our DllMain function.
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		//When this dll is injected into the process. this is what the dll is supposed to do.
		// Null, in C Plus Plus, nothing. It is defined as 0
		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
		//It creates the thread called "Lesson" which is defined a few lines up. DWORD WINAPI Lesson (LPVOID)
	}
return TRUE;
// Although the return value doesn't actually matter. You return the value TRUE or FALSE indicatinng success or failure.

}
after deleting shit
Code:
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	
	
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		
		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
		
	}
return TRUE;


}
not this:
Code:
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)
	{
	}
    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") && !LogIn)
	{
		DisableThreadLibraryCalls(hDll);
		LogIn = true; Sleep(200); //LoginCheck true
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Runner, NULL, NULL, NULL); //CreateThread start Runner
	}
	return TRUE;
}
#3 · 14y ago
CheatCreatorzz
CheatCreatorzz
Quote Originally Posted by Assassin's Creed View Post

this is what he used....:
Code:
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
// DllMain is an optional function for you to declare.
// It serves as the entry point for any DLL
{
	DisableThreadLibraryCalls(hDll);
	// Make a call to DisableThreadLibraryCalls with the hModule variable
	// as its argument; Doing this is an optimization trick to prevent
	// needless thread attach/detach messages from triggering further calls
	// to our DllMain function.
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		//When this dll is injected into the process. this is what the dll is supposed to do.
		// Null, in C Plus Plus, nothing. It is defined as 0
		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
		//It creates the thread called "Lesson" which is defined a few lines up. DWORD WINAPI Lesson (LPVOID)
	}
return TRUE;
// Although the return value doesn't actually matter. You return the value TRUE or FALSE indicatinng success or failure.

}
after deleting shit
Code:
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	
	
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		
		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
		
	}
return TRUE;


}
not this:
Code:
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)
	{
	}
    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") && !LogIn)
	{
		DisableThreadLibraryCalls(hDll);
		LogIn = true; Sleep(200); //LoginCheck true
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Runner, NULL, NULL, NULL); //CreateThread start Runner
	}
	return TRUE;
}

I just add LoginCheck & GetModuleHandle, i also can remove them , btw i got them from Giniyat's base that he shared some months ago.
It looks like this:
Code:
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)
	{
		//
	}

    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") && !attached)
	{
		DisableThreadLibraryCalls(hDll);
		attached = true;
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)hack, NULL, NULL, NULL);
	}
	return TRUE;
}
I only add a run thread for hack thread, i found that on CA section

Code:
DWORD WINAPI Lesson (LPVOID)
// This is just a dummy function that will be the code activate the main thread
{	
	Main();
	//Call the thread called Main
	return 1;
	//Finish of the thread.
}
with less info
Code:
DWORD WINAPI Lesson (LPVOID)

{	
	Main();
	return 1;
}
#4 · 14y ago
Assassin's Creed
Assassin's Creed
Quote Originally Posted by CheatCreatorzz View Post



I just add LoginCheck & GetModuleHandle, i also can remove them , btw i got them from Giniyat's base that he shared some months ago.
It looks like this:
Code:
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)
	{
		//
	}

    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") && !attached)
	{
		DisableThreadLibraryCalls(hDll);
		attached = true;
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)hack, NULL, NULL, NULL);
	}
	return TRUE;
}
I only add a run thread for hack thread, i found that on CA section

Code:
DWORD WINAPI Lesson (LPVOID)
// This is just a dummy function that will be the code activate the main thread
{	
	Main();
	//Call the thread called Main
	return 1;
	//Finish of the thread.
}
with less info
Code:
DWORD WINAPI Lesson (LPVOID)

{	
	Main();
	return 1;
}
this is what i use but i just changed log in to "clear" and the H file to hook.h .... and i didnt get it from giniyat....wierd...
#5 · 14y ago
CheatCreatorzz
CheatCreatorzz
Quote Originally Posted by Assassin's Creed View Post


this is what i use but i just changed log in to "clear" and the H file to hook.h .... and i didnt get it from giniyat....wierd...
many people have the bool blabla = flase;
then If GetModuleHandle (!blabla)
then DisableThreadLibraryCalls(hDll)
after that -> ..
blabla = true;

not so great.


I just combinated 2-3 bases
#6 · edited 14y ago · 14y ago
giniyat101
giniyat101
one question
why a whole header file for just one variable?
#7 · 14y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Similar Threads

  • my last base after patch it has only little things becuz i used it for testing!By Dead(H)ell in CrossFire Hack Coding / Programming / Source Code
    11Last post 14y ago
  • Assassin's Creed Simple Injector V1 <<After Xmas Patch>>By Assassin's Creed in CrossFire Spammers, Injectors and Multi Tools
    15Last post 14y ago
  • How to fix X-Fire hack to work after the last Patch[Video]By joi121 in Combat Arms Europe Hacks
    25Last post 17y ago
  • J-Deezy's simple hotkey hack (Works after the patch)By Jason in Combat Arms Hacks & Cheats
    207Last post 16y ago
  • MrSkafighter's Menu Pub Version 1.8 Working After Latest PatchedBy MrSkafighter in Combat Arms Hacks & Cheats
    46Last post 16y ago

Tags for this Thread

None