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 › Base code.

Base code.

Posts 1–15 of 32 · Page 1 of 3
GS
GS-HITMAN
Base code.
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
Could someone release a base code once more [banned]mark's is little bit out of date i believe.|||||||||||||||||||||||||||||||||||||||||||||||||| ||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
#1 · edited 15y ago · 15y ago
markO1O8
markO1O8
Quote Originally Posted by GS-HITMAN View Post
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
Could someone release a base code once more [banned]mark's is little bit out of date i believe.|||||||||||||||||||||||||||||||||||||||||||||||||| ||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||

Im Note Sure Which PTC Have been removed.

Thanks **HACKER** For The Updated LTClient ("0x30845C")

Im Note Sure If Its Working Threw The PTC's I'm Download CF Againg Now

Code:
#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PushToConsole(char* szVal ) {
	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
	if( dwCShell != NULL )
	{
		DWORD *LTClient = ( DWORD* )( (dwCShell + 0x30845C) );
		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
		_asm
		{
			push szVal;
			call CONoff;
			add esp, 4;
		}
	}
}
DWORD WINAPI Main(LPVOID) {
	while(GetModuleHandleA("CShell.dll") == NULL ) {
	Sleep(150);
}

	bool PlayerGlow = true; 
	bool FogEnable = false;
	bool Nosmoke = true;
        bool Whitewalls = false;


for(;;) {
	__asm pushad;
			if(GetAsyncKeyState(VK_F2)&1) {
				PlayerGlow = !PlayerGlow;
			}
			if(GetAsyncKeyState(VK_F3)&1)	{
				FogEnable = !FogEnable;
			}
			if(GetAsyncKeyState(VK_F4)&1)	{
				Nosmoke = !Nosmoke;
			}
                        if(GetAsyncKeyState(VK_F9)&1)	{
				Whitewalls = !Whitewalls;
			}

			if (Nosmoke) {
				PushToConsole("DrawParticles 1");
			} 
			else {
		                PushToConsole("DrawParticles 0");
			}

			if (FogEnable) {
				PushToConsole("FogEnable 1");
			} 
			else {
				PushToConsole("FogEnable 0");
			}
			if  (PlayerGlow) {
				PushToConsole("ScreenGlowEnable 1");

			}
			else {
				PushToConsole("ScreenGlowEnable 0");

			}
                        if (Whitewalls) {
                                PushToConsole("DrawFlat 1");
                        } 
                        else {
                                PushToConsole("DrawFlat 0");
                        }
			Sleep(100);
			__asm popad;
	}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		MessageBoxA(0, "The Creators Name Here ", "Successfully Injected", 0);
                system("start http://www.mpgh.net");
		CreateThread(NULL, NULL,Main, NULL, NULL, NULL);
	}
	return TRUE;
}
#2 · edited 15y ago · 15y ago
SE
serbaz55
Mark Help Crossfire Ph LTcilent address
#3 · 15y ago
markO1O8
markO1O8
Quote Originally Posted by serbaz55 View Post
Mark Help Crossfire Ph LTcilent address
What u mean u need help or?? :/
#4 · 15y ago
deathtrap
deathtrap
MARK WAS A GOOD HACK..ER
#5 · 15y ago
markO1O8
markO1O8
Quote Originally Posted by deathtrap View Post
MARK WAS A GOOD HACK..ER
Thanks ....
#6 · 15y ago
**
**HACKER**
@mark0108
He Is Not talking About You I Dont Think !
#7 · 15y ago
markO1O8
markO1O8
Quote Originally Posted by **HACKER** View Post
@mark0108
He Is Not talking About You I Dont Think !
i am [banned]Mark0108 :/ ofc he is im the only one called mar who was good about 5-8 monst ago
#8 · 15y ago
**
**HACKER**
Quote Originally Posted by markO1O8 View Post
i am [banned]Mark0108 :/ ofc he is im the only one called mar who was good about 5-8 monst ago
oh sorry and welcome back what happened for you to get banned ?
#9 · 15y ago
markO1O8
markO1O8
Quote Originally Posted by **HACKER** View Post
oh sorry and welcome back what happened for you to get banned ?
i made a mistake with mpgh, i fort they removed my post but they was changing severs so i went on a rage
#10 · 15y ago
**
**HACKER**
Quote Originally Posted by markO1O8 View Post
i made a mistake with mpgh, i fort they removed my post but they was changing severs so i went on a rage
Haha Fail So They Banned You Then I Guess Haha Anyway Nice To Have You Back "
#11 · 15y ago
markO1O8
markO1O8
Quote Originally Posted by **HACKER** View Post
Haha Fail So They Banned You Then I Guess Haha Anyway Nice To Have You Back "
Thanks hopefully ill get back to making beta hacks lol i have to revise for my exams and that in school
#12 · 15y ago
wtfhaksftw
wtfhaksftw
eyo mark we all know ur a good hacker, do u know how to code a bypass for a hack?
#13 · 15y ago
markO1O8
markO1O8
Quote Originally Posted by wtfhaksftw View Post
eyo mark we all know ur a good hacker, do u know how to code a bypass for a hack?
Thanks, Im Working on itt Ill give t o mpgh wen im done
#14 · 15y ago
wtfhaksftw
wtfhaksftw
thx dude cause i can code my own hack (no ptc xDDDDD) but i fail at bypass. Can u tell me where i can learn it or who can teach me it because im frickin annoyed
#15 · 15y ago
Posts 1–15 of 32 · Page 1 of 3

Post a Reply

Tags for this Thread

None