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 › Steam Games Hacks & Cheats › Counter-Strike 2 Hacks › My own untrsted hack(Polyloader!)

My own untrsted hack(Polyloader!)

Posts 1–15 of 19 · Page 1 of 2
imforpeace228
imforpeace228
My own untrsted hack(Polyloader!)
WARNING!, THIS HACK WILL CAUSE YOU UNTRUSTED BAN
Purposes of leaking was 3 untrusted accs, so i give up.
all need is compile it in polyloader 2.3.1 and there you go! after 5 days you will get untrusted ban.
Please don't comment this post like "omfg your nub in coding!1"
Right now it's only untrusted bannable, so you can don't care about vac ban!!!!

And i would like to know why i got untrusted 3 times? when i got it first time, someone(ZacZero) helped me with code and i thought i'm fine, but after that i got untrusted after five and six days.

This code is a really good example for beginners like me(maybe, lol)

Functions:
Triggerbot(numpad 5 by default, you can change it in source code)
Bunnyhop(Space by default)
Glowhack(with spotted/flashed color changing)

There are some toggle buttons, you can search them xD

VirusscanJotti
Virustotal
Imforpeace_mpgh.net.zip
#1 · edited 9y ago · 9y ago
DarknzNet
DarknzNet
Approved .
#2 · 9y ago
Zaczero
Zaczero
Maybe try coding a new cheat from 0
I'm sure you did something wrong. Everyone is using like glow esp and bunnyhop without untrusted.
DON'T GIVE UP
#3 · 9y ago
Don Coderleone
Don Coderleone
The 5 days delay seems weird to me, when i started to make hacks, it was 1-2 days.
I loop through the code and almost everything looks fine, but i'd read the glow as a struct. I suggest you to check out glow_outline_effect.h and the .cpp in the SDK. I'll just paste it here.

My suggestion is to read the struct, then modify that and then write the modified struct to the memory. It won't make any difference, but it's the best way to do it, faster and cleaner.

The struct looks like this:

Code:
	
	struct GlowObject_t
	{
		void*              m_pEntity;				//0000
		float              m_flGlowRed;				//0004
		float              m_flGlowGreen;			//0008
		float              m_flGlowBlue;			//000C
		float              m_flGlowAlpha;			//0010
		unsigned char      unk0[0x10];				//0014
		bool               m_bRenderWhenOccluded;	        //0024
		bool               m_bRenderWhenUnoccluded;	        //0025
		unsigned char      unk2[0x12];				//0026
	};
Credits: Valve

And i saw one more problem in getting the entitybase, why did you make EntityBase (never ever use that) and EntityBase2?
Code:
And it's wrong: 
Mem.Read<DWORD>(dwClientDLL + Offsets.dwEntityList + i * Offsets.EntLoopDist);
It have to be read like this in the loop:
Mem.Read<DWORD>(dwClientDLL + Offsets.dwEntityList + (i-1) * Offsets.EntLoopDist);
And in the triggerbot just simulate a click, there is no need to write memory there. (it won't make any difference, just my opinion + you don't have to update the offset)

And check out threading

And never give up. That's all, i hope i could help.
#4 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by xpeace View Post
The 5 days delay seems weird to me, when i started to make hacks, it was 1-2 days.
I loop through the code and almost everything looks fine, but i'd read the glow as a struct. I suggest you to check out glow_outline_effect.h and the .cpp in the SDK. I'll just paste it here.

My suggestion is to read the struct, then modify that and then write the modified struct to the memory. It won't make any difference, but it's the best way to do it, faster and cleaner.

The struct looks like this:

Code:
	
	struct GlowObject_t
	{
		void*              m_pEntity;				//0000
		float              m_flGlowRed;				//0004
		float              m_flGlowGreen;			//0008
		float              m_flGlowBlue;			//000C
		float              m_flGlowAlpha;			//0010
		unsigned char      unk0[0x10];				//0014
		bool               m_bRenderWhenOccluded;	        //0024
		bool               m_bRenderWhenUnoccluded;	        //0025
		unsigned char      unk2[0x12];				//0026
	};
Credits: Valve

And i saw one more problem in getting the entitybase, why did you make EntityBase (never ever use that) and EntityBase2?
Code:
And it's wrong: 
Mem.Read<DWORD>(dwClientDLL + Offsets.dwEntityList + i * Offsets.EntLoopDist);
It have to be read like this in the loop:
Mem.Read<DWORD>(dwClientDLL + Offsets.dwEntityList + (i-1) * Offsets.EntLoopDist);
And in the triggerbot just simulate a click, there is no need to write memory there. (it won't make any difference, just my opinion + you don't have to update the offset)

And check out threading

And never give up. That's all, i hope i could help.
I don't agree with the i-1 thing. What if you start with index = 0? you will get -1.
The untrusted problem is not in here.


- - - Updated - - -

PS. Close thread - detected
#5 · 9y ago
imforpeace228
imforpeace228
Quote Originally Posted by xpeace View Post
why did you make EntityBase (never ever use that) and EntityBase2?
Because i'm new in coding and doing things wrong, that's why
#6 · edited 9y ago · 9y ago
BL
blodhblaka85
Quote Originally Posted by Zaczero View Post


I don't agree with the i-1 thing. What if you start with index = 0? you will get -1.
The untrusted problem is not in here.


- - - Updated - - -

PS. Close thread - detected
Wrong.... since most of the offsets here start with second entity by doing -1 you can treat i as entity index. If you wont do it and for example your gonna use get local player index from clientstate, you will get wrong entity. (The entity after locPlayer in ent list)
So by doing 0 (aka -1 ). You are getting First entity from ent list, which is world/server.
#7 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by blodhblaka85 View Post
Wrong.... since most of the offsets here start with second entity by doing -1 you can treat i as entity index. If you wont do it and for example your gonna use get local player index from clientstate, you will get wrong entity. (The entity after locPlayer in ent list)
So by doing 0 (aka -1 ). You are getting First entity from ent list, which is world/server.
o . 0
#8 · 9y ago
imforpeace228
imforpeace228
that's doesn't make sense, when it was (i - 1) i got untrusted to(that was the first untrusted ban)
#9 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by blodhblaka85 View Post
Wrong.... since most of the offsets here start with second entity by doing -1 you can treat i as entity index. If you wont do it and for example your gonna use get local player index from clientstate, you will get wrong entity. (The entity after locPlayer in ent list)
So by doing 0 (aka -1 ). You are getting First entity from ent list, which is world/server.
Now i recheck my code and this -1 will make sense. I've been -1 my CrosshairID result to get correct player :P
Thank you so much!
#10 · 9y ago
imforpeace228
imforpeace228
Quote Originally Posted by Zaczero View Post
Now i recheck my code and this -1 will make sense. I've been -1 my CrosshairID result to get correct player :P
Thank you so much!
Pro cheatmaker learning new stuff from new members? Hmmm very interesting
#11 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by imforpeace228 View Post
Pro cheatmaker learning new stuff from new members? Hmmm very interesting
shhhhhhhh
#12 · 9y ago
BL
blodhblaka85
Quote Originally Posted by imforpeace228 View Post
Pro cheatmaker learning new stuff from new members? Hmmm very interesting
*New member on this forum.
#13 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by imforpeace228 View Post
Because i'm new in coding and doing things wrong, that's why
trash code = bad code
you should test all your features alone. like only glow and check if you are getting untrusted
I'm sure you will fix your problem.
#14 · edited 9y ago · 9y ago
imforpeace228
imforpeace228
As i said, i'm giving up because i don't have and wouldn't spend money anymore for new cs go
#15 · 9y ago
Posts 1–15 of 19 · Page 1 of 2

Post a Reply

Similar Threads

  • tradin new own made hacks by meBy loky615 in Trade Accounts/Keys/Items
    2Last post 19y ago
  • {TUT} How to make your own opk hackBy mandog10 in Combat Arms Hacks & Cheats
    28Last post 18y ago
  • [[TUTORIAL]] How to make your OWN warrock hacksBy th9end in WarRock Discussions
    15Last post 17y ago
  • Make your own WR hackBy tdcoolboy in C++/C Programming
    26Last post 16y ago
  • I want make own litte hacksBy F60705R in CrossFire Hacks & Cheats
    9Last post 16y ago

Tags for this Thread

#ban#polyloader#untrusted