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 › [Release] Crossfire hack source codes

[Release] Crossfire hack source codes

Posts 1–15 of 25 · Page 1 of 2
OM
omgigotbanned
[Release] Crossfire hack source codes
No grenade damage:
Code:
#define grenades ((i==6)||(i==7)||(i==8)||(i==64)||(i==100)||(i==126)||(i==135)||(i==209)||(i==210)||(i==240)||(i==263)||(i==272)||(i==338)||(i==382)||(i==383)||(i==384))
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && (grenades))
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7F8) = 0.0f; //String is "AmmoDamage"
No Reload (Without knife bug):
Code:
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2424) = 100.0f; //String is "ReloadAnimRatio"
One hit kill (Causes Client error in TD/MM/HM):
Code:
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7F8) = 99999.0f //use 116.0 in TD/MM/HM (not OHK) , String is "AmmoDamage"
No weapon weight:
Code:
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x21DC) = 0.0f; //String is "MoveSpeedPenalty"
Shoot throgh wall:
Code:
if (*(DWORD*)((CShellBase)+WallMgr) != NULL)
                        {
                                *(bool*)((*(DWORD*)((CShellBase)+WallMgr))+(i*0x474)+0x468) = true; //String is "EdgeShotEnabled"
                                *(bool*)((*(DWORD*)((CShellBase)+WallMgr))+(i*0x474)+0x46C) = true; //String is "WallShotEnabled"
                                *(bool*)((*(DWORD*)((CShellBase)+WallMgr))+(i*0x474)+0x470) = true; //String is "PerfectWallShotEnabled"
No weapon change delay::
Code:
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2428) = 100.0f; //String is "ChangeWeaponAnimRatio"
Knife tele kill (causes client error if used 5 times
Code:
#define knives ((i==5) || (i==74) || (i==269) || (i==270) || (i==271) || (i== 372))
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && (knives))
{
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7EC) = 20000.0f; //Visual , String is "Range"
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA20) = 20000.0f; //Not visual , String is "KnifeNormalRange"
 
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA24) = 20000.0f; //same as above "KnifeNormalRange" has two addys
 
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA2C) = 20000.0f //Not visual , String is "KnifeBigshotRange". this one should affect knife right click but i didn't test this one.
}
Max weapon range::

Code:
#define knives ((i==5) || (i==74) || (i==269) || (i==270) || (i==271) || (i== 372))
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && (!knives))
                                                *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7EC) = 20000.0f; //String is "Range"
Fire types:
Code:
enum FireType
{
        SingleFire =1;
        RepeatFire = 2;
        ShrapnelFire = 4;
        DelayFire = 8;
        AlternateFire = 16;
}
 
 
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                *(DWORD*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA38) = Something ;//look at strings in the enum
Credits ~FALLEN~ for the shoot through walls and giniyat202 for the rest of the source codes.
#1 · 14y ago
giniyat101
giniyat101
thx for credits but it is already posted.
BTW are u "hack-nice" on another site ? (not going to say to avoid ban)
@omgigotbanned
#2 · edited 14y ago · 14y ago
OM
omgigotbanned
yes yes i am
#3 · edited 14y ago · 14y ago
MightySaa0d
MightySaa0d
@~FALLEN~
@giniyat101

Great job you two

BTW @~FALLEN~ GREAT beginning for your MPGH career. Coming ready is nice
#4 · 14y ago
A$
A$IAN
Quote Originally Posted by [C]-[F] View Post
by the FireMode is DWORD DWORD WORD wrong the firsst is BYTE
Code:
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(BYTE*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA38) = Something ;//look at strings in the enu
There is no error. All is fine. The first part checks only the weapons. Default is DWORD.
The second lines changes 0xA38 and the type of it is BYTE
#5 · 14y ago
CO
Code[VB]
fail thread,.. only leeched stuff
#6 · 14y ago
OM
omgigotbanned
Well that's what I do we may have our similarities and differences.
#7 · 14y ago
giniyat101
giniyat101
Quote Originally Posted by Code[VB] View Post
fail thread,.. only leeched stuff
he gave credits so he is not.
Quote Originally Posted by Philong Nguyen View Post

There is no error. All is fine. The first part checks only the weapons. Default is DWORD.
The second lines changes 0xA38 and the type of it is BYTE
he fixed it. when i created the original thread i forgot it is float and i used dword.
#8 · 14y ago
EX
Extractional
Thanks, might make a hack..
#9 · 14y ago
A$
A$IAN
Quote Originally Posted by giniyat101 View Post
he gave credits so he is not.

he fixed it. when i created the original thread i forgot it is float and i used dword.
Well, if he asked for the permission, to release these codes to the public, then he is not a leecher.
but he is still a fag if he released without their permission, although he gives credits
#10 · 14y ago
giniyat101
giniyat101
Quote Originally Posted by Philong Nguyen View Post

Well, if he asked for the permission, to release these codes to the public, then he is not a leecher.
but he is still a fag if he released without their permission, although he gives credits
i posted this codes on another site publicly and every one has the permission to released them.
#11 · 14y ago
[[SeXergy]]
[[SeXergy]]
I though AlternateFire's value was 10;
#12 · 14y ago
DaRk
DaRk
can u give me the wall mgr addy
#13 · 14y ago
giniyat101
giniyat101
Quote Originally Posted by [[SeXergy]] View Post
I though AlternateFire's value was 10;
@[[SeXergy]]
0x10 = 16
#14 · 14y ago
JU
JusCaus
my ohk isnt working anymore. My other features are working fine. I have changed the value a few times and still nothing.
#15 · 14y ago
Posts 1–15 of 25 · Page 1 of 2

Post a Reply

Similar Threads

  • CrossFire Hack Source Code Resource List!By *DeathHunter* in CrossFire Hack Coding / Programming / Source Code
    8Last post 16y ago
  • [Release] Blackout Hack Source CodeBy ac1d_buRn in Piercing Blow Discussions
    21Last post 15y ago
  • Crossfire NA Wall Hack Source CodeBy Dark Side in CrossFire Hack Coding / Programming / Source Code
    16Last post 15y ago
  • <releasing 2 morrow> new opk hack ~source code~ C++By pikamew4 in Combat Arms Hack Coding / Programming / Source Code
    21Last post 16y ago
  • [Release] WarHax DLL Source CodeBy OneWhoSighs in WarRock - International Hacks
    20Last post 18y ago

Tags for this Thread

None