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 › Programming › C++/C Programming › Audition Online Coding

Audition Online Coding

Posts 1–10 of 10 · Page 1 of 1
PO
pool0987
Audition Online Coding
Hello i am just wondering if any of you know how to use these codes?

I am not sure how but i think it is suppose be used by some sort of injector am i right? Anyone willing to tell me what are these?


Perfect Hack
[enable]
// Perfect Hack
//Credits : xiiaoqiang

84bd4f:
add [ebx], dh
xor esi, [ebx+3f]


[disable]
84bd4f:
aas
xor esi, [ebx]
jae 0084bd93








Insane mode hack :
[enable]
//Insane Mode Hack
//Credits : xiiaoqiang

d8c5a5:
add [ecx], al

[disable]

d8c5a5:
add [eax], al

Reset BP Last C9 NPC

[enable]
d8c5a3:
add cl, bh
d8c5a0:
and [eax], al

[disable]

d8c5a3:
add [eax], al

d8c5a5:
add [eax], al

d8c5a7:
add [eax], al

d8c5a0:
add [eax], al

//Credits :xiiaoqiang






Beat rush battle party Reset
[enable]

d8c5a2:
or [eax], al

[disable]
d8c5a2:
add [eax], al
//Credits : xiiaoqiang





Disable Chance
[enable]
d8c718:
add [eax], al

[disable]

d8c718:
add [eax], al
//Credits : xiiaoqiang



Chance DC Hack : Please insert chance 18 .dds to prevent yourself from dcing
[enable]
d8c718:
adc al, byte ptr [eax]

d8c728:
fiadd [edx]

[disable]

d8c718:
add [eax], al
//Credits :xiiaoqiang

//Require Chance 18.dds acv


Gender from Boy to Girl
[enable]
db05fa:
dec esi

[disable]

db05fa:
push es

//Credits : xiiaoqiang



Gender from Girl to Boy
[enable]


db05fa:
push es

[disable]
db05fa:
dec esi

//Credits : xiiaoqiang
#1 · 16y ago
Imported
Imported


Umm pretty sure most of them are direct asm, amiright? I don't really do much C++ but isn't there a like..

[php]
__asm
[/php]

or some shit which you can use to write direct asm to the process?

Also, no, this is not for an injector. My guess would be a compiled .dll that you can then inject into the process.
#2 · 16y ago
Hell_Demon
Hell_Demon
I think those might be codes for cheatengine/artmoneys autoassembler or whatever it's called(or maybe TMK)
#3 · 16y ago
PO
pool0987
Quote Originally Posted by Imported View Post


Umm pretty sure most of them are direct asm, amiright? I don't really do much C++ but isn't there a like..

[php]
__asm
[/php]

or some shit which you can use to write direct asm to the process?

Also, no, this is not for an injector. My guess would be a compiled .dll that you can then inject into the process.

So i should just compile it into a game dll?
#4 · 16y ago
Jason
Jason
Quote Originally Posted by pool0987 View Post
So i should just compile it into a game dll?
Mate, I don't have the faintest idea (I'm imported by the way, was banned at the time)

Listen to HD, he knows what he's talking about.
#5 · 16y ago
PO
pool0987
Quote Originally Posted by Hell_Demon View Post
I think those might be codes for cheatengine/artmoneys autoassembler or whatever it's called(or maybe TMK)
HD hmm so what engine should i use to activate this codes?
#6 · 16y ago
why06
why06
Looks like the person is treating data as code. add[eax], al is a useless instruction, it usually appears when a disassembler tries to dissassemble allocated memory which is set to 00.

Secondly this isn't code u can compile. It's just random shiet. YOu would have to know what game it is first, and then there's a high chance the addresses are outdated. THis is what u get when u google for code to copy and paste.
#7 · edited 16y ago · 16y ago
PO
pool0987
Quote Originally Posted by why06 View Post
Looks like the person is treating data as cold. add[eax], al is a useless instruction, it usually appears when a disassembler tries to dissassemble allocated memory which is set to 00.

Secondly this isn't code u can compile. It's just random shiet. YOu would have to know what game it is first, and then there's a high chance the addresses are outdated. THis is what u get when u google for code to copy and paste.
The game it is for is "AuditionSEA"

And it's not outdated. It's still working. But i have to find out from other people how to use it
#8 · 16y ago
'Bruno
'Bruno
Quote Originally Posted by pool0987 View Post
The game it is for is "AuditionSEA"

And it's not outdated. It's still working. But i have to find out from other people how to use it
exactly! =D
#9 · 16y ago
PO
pool0987
Hello? someone help me? ):
#10 · 15y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • website's whos online CODEBy undergroundhack in Programming Tutorials
    2Last post 17y ago
  • Dead Space 2 Online CodeBy -PoisonedG- in XBOX General Discussion
    12Last post 15y ago
  • CODING TRICK W/ NOTEPAD [PLEASE DONT MOVE THIS SECTION HAS LOTS OF PPL ONLINE]!By icantlolanymore in Programming Tutorials
    25Last post 16y ago
  • Buying NX Codes OnlineBy jawa1802 in Combat Arms Discussions
    23Last post 16y ago
  • CODING TRICK W/ NOTEPAD [PLEASE DONT MOVE THIS SECTION HAS LOTS OF PPL ONLINE]!By icantlolanymore in Combat Arms Hacks & Cheats
    20Last post 17y ago

Tags for this Thread

None