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 › GlassWall Function

GlassWall Function

Posts 1–9 of 9 · Page 1 of 1
killerld
killerld
GlassWall Function
Hi All,

I need if it's ok :
Code:
void Glasswall ()
{
if(GetAsyncKeyState(VK_RCONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+ADR_GLASSWALL) = 0;
}
}
}
I tried to do by myself and this what I do, but it crash warrock and I don't Work, my address is ok, not detected.
#1 · 17y ago
IPAWN
IPAWN
the code is used is not meant for that type of hack try using something like this:
example

Code:
void unlimAmmo()
{
	DWORD dwProtect;
	const BYTE nop[3] = {0x90,0x90,0x90};
    VirtualProtect((void*)(ADR_UNLAMMO1), 3, PAGE_EXECUTE_READWRITE, &dwProtect);
    memcpy((void*)ADR_UNLAMMO1, &nop, 3);
    VirtualProtect((void*)(ADR_UNLAMMO1), 3, dwProtect, NULL);

	VirtualProtect((void*)(ADR_UNLAMMO2), 3, PAGE_EXECUTE_READWRITE, &dwProtect);
    memcpy((void*)ADR_UNLAMMO2, &nop, 3);
    VirtualProtect((void*)(ADR_UNLAMMO2), 3, dwProtect, NULL);

	VirtualProtect((void*)(ADR_UNLAMMO3), 3, PAGE_EXECUTE_READWRITE, &dwProtect);
    memcpy((void*)ADR_UNLAMMO3, &nop, 3);
    VirtualProtect((void*)(ADR_UNLAMMO3), 3, dwProtect, NULL);

}
#2 · 17y ago
zhaoyun333
zhaoyun333
Hey! Thats my code >

But i think glass wall is noping the bytes. You'll have to find out the nubmer of bytes
#3 · 17y ago
killerld
killerld
I don't need Unl. Ammo... I saw this on a forum : Glasswalls --> write 0 as long/float. So just have to write the Float = 0

I think I don't need to read it from the playerpointer
#4 · 17y ago
zhaoyun333
zhaoyun333
can you PM me your address?
#5 · 17y ago
IPAWN
IPAWN
Quote Originally Posted by zhaoyun333 View Post
Hey! Thats my code >

But i think glass wall is noping the bytes. You'll have to find out the nubmer of bytes
srry, i was just showing him thats their are diffrent ways to code and the one he used was wrong, cus the one he use dwas mine which is only for changing values such as speed
#6 · 17y ago
killerld
killerld
IPAWN Thanks but me and Zhao have a Working GlassWall =D
#7 · 17y ago
IPAWN
IPAWN
Quote Originally Posted by killerld View Post
IPAWN Thanks but me and Zhao have a Working GlassWall =D
u may, but i almost got my bypass crack so
#8 · 17y ago
zhaoyun333
zhaoyun333
Really? I'll trade glasswall for bypass =) But its Wednesday and they are changing addies, going to have to find the new ones
#9 · 17y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • Warrock Glasswall FunctionBy nielz001 in WarRock Hack Source Code
    4Last post 14y ago
  • Disable some of punkbuster's functions.By System79 in Game Hacking Tutorials
    3Last post 20y ago
  • Advanced Hacking tutorial (How to find adresses for the coolest trainer functions)By nukeist_ in WarRock - International Hacks
    8Last post 19y ago
  • hack function ideaBy l0ngcat in WarRock - International Hacks
    6Last post 18y ago
  • How can i kill a function in vbBy HeXel in Visual Basic Programming
    5Last post 18y ago

Tags for this Thread

#function#glasswall