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 › ? Void List ?

? Void List ?

Posts 1–6 of 6 · Page 1 of 1
killerld
killerld
? Void List ?
Someone have a Void List ? My hack is Already complete. I need a Void List.
I have all Addys but some Void but not all.

With The Void, I'm able to do a VIP Hack and I have a Public Hack To be release if all work need 2 or 3 more feature

Thanks all
#1 · 17y ago
killerld
killerld
Please I need a C++ Cr4ck :P A Guy really know what he do. Please Help me :P. I found a Bypass But :P I don't know if I have the good addy and if they can be detected. I need a feet back.

Thx MPGH without this community I can do nothing :P
#2 · 17y ago
zhaoyun333
zhaoyun333
Could you elaborate a bit? What is a "void list"?
#3 · 17y ago
killerld
killerld
For me This is a Void :

Code:
void Jump() // superjump if hit control button
{
if(GetAsyncKeyState(VK_LCONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 500;
}
}
}
But I need someone is very good to code C++ because My hack need to be Verify
#4 · 17y ago
zhaoyun333
zhaoyun333
Those are called functions. When you see void behind a function it means the function returns a null value.

If you see a fucntion that starts with "int" i will return an integer value, eg:

Code:
int sum(int a,int b){

return a+b;
}
main(){
int total=sum(5,6);
}
Same with float (decimal) :

Code:
float average(int a,int b){

return (a+b)/2;
}

main(){
float aver=average(5,6);
}
Void

Code:
void superjump(){
z=2000;
}
main(){
int a=superjump();   //null value i think

}
Hope this clear things up.
#5 · edited 17y ago · 17y ago
killerld
killerld
Okay thank you, Because I don't really the exact Name, I start Coding since 5 Days :x :P
#6 · 17y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • Big List of Free Web ServicesBy sp5710 in Spammers Corner
    20Last post 7y ago
  • Anonymous Proxy ListBy Dave84311 in Spammers Corner
    22Last post 10y ago
  • MMO ListBy Dave84311 in General Gaming
    19Last post 16y ago
  • That list?By OutZida in Art & Graphic Design
    3Last post 20y ago

Tags for this Thread

#list#void