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 › I got this error ...can someone help!!!???

ExclamationI got this error ...can someone help!!!???

Posts 1–14 of 14 · Page 1 of 1
BA
badboy3
I got this error ...can someone help!!!???
Okey so me and michielr made a hack it is a noreload and norecoil hack....eventrully it was really easy....welll when we were done I got this error from X-trap.....

ImageShack® - Online Photo and Video Hosting

Does it mean I have to use a injector?????

my code:
Code:
#include <windows.h>

bool injected = true;

DWORD WINAPI hacks(LPVOID)
{
	bool Basic = true;

	while(1)
	{
		DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
		DWORD WeaponMgr = *(DWORD*)(CShell + 0xA68F80);

if( Basic )
			{
				if( WeaponMgr )
					for(int i = 0; i < 576; i ++)
					{
						PDWORD Weapon2 = (PDWORD)(CShell + 0xA68F80);
						DWORD Weapon = *(DWORD*)(*Weapon2 + 4*i);

						if ( Weapon )
						{
								for(int y = 0; y<9;y++)
							{
								*(float*)( Weapon + (0x1928) + (4*y)) = 0.0f;
								*(float*)( Weapon + (0x192C) + (4*y)) = 0.0f;
								*(float*)( Weapon + (0x1930) + (4*y)) = 0.0f;
								*(float*)( Weapon + (0x26A4) + (4*y)) = 0.0f;
								*(float*)( Weapon + (0x20FC) + (4*y)) = 0.0f;
								*(float*)( Weapon + (0x1F94) + (4*y)) = 0.0f;
								*(float*)( Weapon + (0x269C)) = (float)75;//reload
				}
			}
		}
	}
}
}
BOOL WINAPI runner(LPVOID) {
	Sleep(2000);
	try {
		DWORD dllfile = (DWORD)GetModuleHandleA("Cshell.dll");
		if(dllfile == false) {
			throw 1;
		}
	} 
	catch (int error) {
		switch(error) {
		case 1:
			CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)runner, NULL, NULL, NULL);
			return false;
		default:
			return false;
		}
	}
	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)hacks, NULL, NULL, NULL);
	return true;
} 
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ) {
	DisableThreadLibraryCalls(hDll);
	if (dwReason == DLL_PROCESS_ATTACH) {
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)runner, NULL, NULL, NULL);
	}
	return true;
}

Please do not leech this.....




credits to:
@badboy3(me)
@michielr
#1 · edited 14y ago · 14y ago
Swag
Swag
Quote Originally Posted by badboy3 View Post
Okey so me and michielr made a hack it is a noreload and norecoil hack....eventrully it was really easy....welll when we were done I got this error from X-trap.....

ImageShack® - Online Photo and Video Hosting

Does it mean I have to use a injector?????


credits to:
@badboy3(me)
@michielr
It means its detected but that can't..
#2 · 14y ago
XS
xslayerx15
turn off ur anti virus ..or any recorder..etc..and cf will work for u
#3 · 14y ago
BA
badboy3
Quote Originally Posted by xslayerx15 View Post
turn off ur anti virus ..or any recorder..etc..and cf will work for u
No it is not my antivirus because if it find anything like that it delets it...(I have Norton 360 the newest version)

I added my code can you check??


Does any body have an Idea on this????
#4 · edited 14y ago · 14y ago
XS
xslayerx15
Quote Originally Posted by badboy3 View Post
No it is not my antivirus because if it find anything like that it delets it...(I have Norton 360 the newest version)

I added my code can you check??


Does any body have an Idea on this????
why dont u get it its the antivirus also TURN OFF FIREWALL i know theres no virus in cf folder BUT U MUST DO IT.
#5 · 14y ago
BA
badboy3
Quote Originally Posted by xslayerx15 View Post
why dont u get it its the antivirus also TURN OFF FIREWALL i know theres no virus in cf folder BUT U MUST DO IT.
I disabled both of them.....
smart firewall and auto-protector.....still got me the error
#6 · 14y ago
XS
xslayerx15
Quote Originally Posted by badboy3 View Post
I disabled both of them.....
smart firewall and auto-protector.....still got me the error
hmm..sorry then i dun know how to fix it
#7 · 14y ago
BL
BlackLite
Code:
*(float*)( Weapon + (0x269C)) + ((4*i)) = (float)300.0f
You sure must use an Injector , Because " Step By Step {sxs} Methode had get caughted , because HGWC Scan CF Folder and see , but i found a way to inject with sxs " i will post it soon "
#8 · 14y ago
BA
badboy3
Quote Originally Posted by BlackLite View Post
Code:
*(float*)( Weapon + (0x269C)) + ((4*i)) = (float)300.0f
You sure must use an Injector , Because " Step By Step {sxs} Methode had get caughted , because HGWC Scan CF Folder and see , but i found a way to inject with sxs " i will post it soon "

okey I will be looking at that when you do post it.....
#9 · 14y ago
{B
{Banned}**HACKER**
Quote Originally Posted by BlackLite View Post
Code:
*(float*)( Weapon + (0x269C)) + ((4*i)) = (float)300.0f
You sure must use an Injector , Because " Step By Step {sxs} Methode had get caughted , because HGWC Scan CF Folder and see , but i found a way to inject with sxs " i will post it soon "
Lol This Is Funny Because You Can Just Use mlang.dll Instead Of sxs.dll !
#10 · 14y ago
.Radar
.Radar
you prob use a detected/patch hack or a tool tht dosen't go to cf folder
#11 · 14y ago
BA
badboy3
Quote Originally Posted by {Banned}**HACKER** View Post

Lol This Is Funny Because You Can Just Use mlang.dll Instead Of sxs.dll !
I did....that is how i got the error

---------- Post added at 05:39 PM ---------- Previous post was at 05:38 PM ----------

Quote Originally Posted by .Radar View Post
you prob use a detected/patch hack or a tool tht dosen't go to cf folder
What part of that hack is detected????
I think it might be were you load Csell.dll
#12 · 14y ago
.Radar
.Radar
Quote Originally Posted by badboy3 View Post
I did....that is how i got the error

---------- Post added at 05:39 PM ---------- Previous post was at 05:38 PM ----------



What part of that hack is detected????
I think it might be were you load Csell.dll
not really if the hak is detected or it detected a program or something tht u use Example: Recorder
it may be detected by XTrap.. also hacks.. if they are detected , i will see tht msg..
#13 · 14y ago
BA
badboy3
Quote Originally Posted by .Radar View Post
not really if the hak is detected or it detected a program or something tht u use Example: Recorder
it may be detected by XTrap.. also hacks.. if they are detected , i will see tht msg..
Well what futures are banned.....I know that one shot kill for zombies it detected...
#14 · 14y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • Error, can someone help me with this error.By tien2005 in CrossFire Help
    5Last post 15y ago
  • can someone help me with this plz?By phantom718 in Combat Arms Hacks & Cheats
    8Last post 18y ago
  • can someone help me with this?By sneezing panda in Suggestions, Requests & General Help
    2Last post 16y ago
  • help with mulitplayer hack, i got this error.By xismejakee in Call of Duty Modern Warfare 2 Help
    2Last post 16y ago
  • Can someone help me about this?By sonicbear in Sudden Attack General
    6Last post 16y ago

Tags for this Thread

None