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 › Glow ESP's

Glow ESP's

Posts 1–15 of 23 · Page 1 of 2
dreek1
dreek1
Glow ESP's
Hello MPGH, today I will share one more function

Preview

Code:
typedef void(WINAPI* oGlowESP)(bool value);
#define ADDR_GLOWESP 0x090E60
		
void YourFunction(){
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)dwCShell + ADDR_GLOWESP);
        if(GlowESP){
	     pSetGlowColor(true);
       }
}
How to get ADDR?
Code:
10090E60  /$ 53             PUSH EBX
10090E61  |. 8B5C24 08      MOV EBX,DWORD PTR SS:[ESP+8]
10090E65  |. 80FB 01        CMP BL,1
10090E68  |. 55             PUSH EBP
10090E69  |. 56             PUSH ESI
10090E6A  |. 75 14          JNZ SHORT CShell_2.10090E80
10090E6C  |. A1 E0C12411    MOV EAX,DWORD PTR DS:[1124C1E0]
10090E71  |. 8B88 1C020000  MOV ECX,DWORD PTR DS:[EAX+21C]
10090E77  |. 68 C076D810    PUSH CShell_2.10D876C0                   ;  ASCII "PlayerOutLineRender 1"
10090E7C  |. FFD1           CALL ECX
10090E7E  |. EB 13          JMP SHORT CShell_2.10090E93
10090E80  |> 8B15 E0C12411  MOV EDX,DWORD PTR DS:[1124C1E0]
10090E86  |. 8B82 1C020000  MOV EAX,DWORD PTR DS:[EDX+21C]
10090E8C  |. 68 A876D810    PUSH CShell_2.10D876A8                   ;  ASCII "PlayerOutLineRender 0"
10090E91  |. FFD0           CALL EAX
10090E93  |> 0FB6CB         MOVZX ECX,BL
10090E96  |. 83C4 04        ADD ESP,4
10090E99  |. 51             PUSH ECX
10090E9A  |. 68 9076D810    PUSH CShell_2.10D87690                   ;  ASCII "PlayerOutLineRender %d
"
10090E9F  |. FF15 14A6D710  CALL DWORD PTR DS:[10D7A614]
10090EA5  |. 8B0D ECC12411  MOV ECX,DWORD PTR DS:[1124C1EC]          ;  CShell_2.112961E0
If study the function you can do things like that


#1 · edited 7y ago · 7y ago
VA
vaisefud3
Quote Originally Posted by dreek1 View Post
Hello MPGH, today I will share one more function

Preview

Code:
#define ADDR_GLOWESP 0x090E60
		
void YourFunction(){
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)dwCShell + ADDR_GLOWESP);
        if(GlowESP){
	     pSetGlowColor(true);
       }
}
How to get ADDR?
Code:
10090E60  /$ 53             PUSH EBX
10090E61  |. 8B5C24 08      MOV EBX,DWORD PTR SS:[ESP+8]
10090E65  |. 80FB 01        CMP BL,1
10090E68  |. 55             PUSH EBP
10090E69  |. 56             PUSH ESI
10090E6A  |. 75 14          JNZ SHORT CShell_2.10090E80
10090E6C  |. A1 E0C12411    MOV EAX,DWORD PTR DS:[1124C1E0]
10090E71  |. 8B88 1C020000  MOV ECX,DWORD PTR DS:[EAX+21C]
10090E77  |. 68 C076D810    PUSH CShell_2.10D876C0                   ;  ASCII "PlayerOutLineRender 1"
10090E7C  |. FFD1           CALL ECX
10090E7E  |. EB 13          JMP SHORT CShell_2.10090E93
10090E80  |> 8B15 E0C12411  MOV EDX,DWORD PTR DS:[1124C1E0]
10090E86  |. 8B82 1C020000  MOV EAX,DWORD PTR DS:[EDX+21C]
10090E8C  |. 68 A876D810    PUSH CShell_2.10D876A8                   ;  ASCII "PlayerOutLineRender 0"
10090E91  |. FFD0           CALL EAX
10090E93  |> 0FB6CB         MOVZX ECX,BL
10090E96  |. 83C4 04        ADD ESP,4
10090E99  |. 51             PUSH ECX
10090E9A  |. 68 9076D810    PUSH CShell_2.10D87690                   ;  ASCII "PlayerOutLineRender %d
"
10090E9F  |. FF15 14A6D710  CALL DWORD PTR DS:[10D7A614]
10090EA5  |. 8B0D ECC12411  MOV ECX,DWORD PTR DS:[1124C1EC]          ;  CShell_2.112961E0
If study the function you can do things like that


Another good function just thrown away
#2 · 7y ago
XU
xuxuzinho123
i love u
adorei o presente de natal seu gostoso < 3 partiu botar no D3D .
#3 · 7y ago
dreek1
dreek1
Quote Originally Posted by vaisefud3 View Post
Another good function just thrown away
I Will make all public.... CF is dead
#4 · 7y ago
VA
vaisefud3
Quote Originally Posted by dreek1 View Post
I Will make all public.... CF is dead
yeah, the players are giving up, but there's always an idiot that will buy zp... It's still fun to cheat in it. Just at least put some anti leecher on ur codes...
#5 · 7y ago
XU
xuxuzinho123
sabe qm sou
Would like you give me the function 'oGlowESP'? cus i'm newbie and no have it.
#6 · 7y ago
dreek1
dreek1
Quote Originally Posted by xuxuzinho123 View Post
Would like you give me the function 'oGlowESP'? cus i'm newbie and no have it.
It's just typedef

Code:
typedef void(WINAPI* oGlowESP)(bool value);
#7 · 7y ago
96neko
96neko
if you want to do in d3d9 you can read this
to put it simple you just draw a line which will be the silhouette edge shader for the player , and just play with the color to make it glowing
#8 · 7y ago
MemoryThePast
MemoryThePast
thanks btw this thing will work if i check it on mutant?
#9 · 7y ago
MR
mrsimson
Not work sir ! i am test for CFNA, run when game status = 11
#10 · 7y ago
VA
vaisefud3
Quote Originally Posted by MemoryThePast View Post
thanks btw this thing will work if i check it on mutant?
Mutants don't have glow
#11 · 7y ago
MemoryThePast
MemoryThePast
Quote Originally Posted by vaisefud3 View Post
Mutants don't have glow
oh i see thanks
#12 · 7y ago
alisonbbzz
alisonbbzz
Você é o papai noel ?, presente delicioso
#13 · 7y ago
[K]akashi
[K]akashi
Quote Originally Posted by mrsimson View Post
Not work sir ! i am test for CFNA, run when game status = 11
It works fine dude
#14 · 7y ago
I2espect
I2espect
isnt 0x21C push to console anyway ? a normal ptc command may work i think
btw Gj

just checked a really old cshell i had and it seems i am right
#15 · edited 7y ago · 7y ago
Posts 1–15 of 23 · Page 1 of 2

Post a Reply

Similar Threads

  • Merccy's Glow ESP - PolyHack - Auto UpdatingBy Merccy2 in Counter-Strike 2 Hacks
    2,403Last post 11y ago
  • CSBLOW Linux Glow ESPBy Rxndom in Counter-Strike 2 Coding & Resources
    5Last post 11y ago
  • Glow ESPBy SweGaming1337 in Counter-Strike 2 Discussions
    5Last post 11y ago
  • CS:GO Glow Esp [Internal]By danimilea in Counter-Strike 2 Hacks
    128Last post 11y ago
  • Merccy's Glow ESP. Wont Work. - NEED HELP -By Mazce in Counter-Strike 2 Help
    4Last post 11y ago

Tags for this Thread

None