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 › Unturned Hacks & Cheats › Some simple codes for simple hacks

Some simple codes for simple hacks

Posts 1–9 of 9 · Page 1 of 1
JU
jumboperson187
Some simple codes for simple hacks
So I decided to organize a list of a bunch of easy to implement codes for hacks.

This list is intended for a few lines long hacks that are simple to use and implement, longer code such as ESPs and other things are not for this thread.

Code:
 Life[] LifeArray = UnityEngine.Object.FindObjectsOfType(typeof(Life)) as Life[];
            foreach (Life life in LifeArray)
            {
                life.tellFood(100);
                life.tellWater(100);
                life.tellHealth(100);
                life.tellSickness(100);
                life.tellBleeding(false);
                life.tellBones(false);
               
                life.energyBuffer();
            }
Godmode
Code:
if (antiAgro)
        {
            Sneaky.sneak(0);
            Sneaky.sneak(0.1f);
            Sneaky.expose(0);
            Sneaky.expose(0.1f);
        }
No zombie agro
Code:
if (GUI.Button(new Rect(10, 0, 180, 30), "Agro all Zombies on me"))
            {
                Zombie[] zs = FindObjectsOfType(typeof(Zombie)) as Zombie[];
                foreach (Zombie player in zs)
                {
                    player.attract(Camera.main.transform.position);
                }
            }
Agro all zombies on given point
Code:
if (GUI.Button(new Rect(10, 410, 100, 30), "Swap UI"))
            {
                SleekRender.swapPaid();
                Images.swapPaid();
                
            }
Change UI to gold
Code:
SpawnItems.spawnItem(Convert.ToInt32(itemspawn), Convert.ToInt32(amount), Camera.main.transform.position);
Item spawning
Code:
Time.timeScale = (whatever speed, 1.0f is the default);
Easy speedhack
Code:
Color color = new Color(UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f));
            SpawnVehicles.create("(CAR NAME)" + UnityEngine.Random.Range(0, 2), 100, 100, Camera.main.transform.position + Vector3.up, transform****tation * Quaternion.Euler(-90f, 0f, 0f), color);
Spawn cars of a certain name
Code:
Network.Disconnect();
Quick DC
Code:
if (GUI.Button(new Rect(10, 380, 100, 30), "Reset Loot")){
                
                SpawnItems.reset();
            }
Reset map loot (Single Player only)
#1 · 12y ago
BL
blackstab1337
no aimbot? aw
#2 · 12y ago
TR
trevorrr259
Quote Originally Posted by blackstab1337 View Post
no aimbot? aw

Sike lol your fucking funny.
#3 · 12y ago
TheMaskedOne
TheMaskedOne
Quote Originally Posted by jumboperson187 View Post
So I decided to organize a list of a bunch of easy to implement codes for hacks.

This list is intended for a few lines long hacks that are simple to use and implement, longer code such as ESPs and other things are not for this thread.

Code:
 Life[] LifeArray = UnityEngine.Object.FindObjectsOfType(typeof(Life)) as Life[];
            foreach (Life life in LifeArray)
            {
                life.tellFood(100);
                life.tellWater(100);
                life.tellHealth(100);
                life.tellSickness(100);
                life.tellBleeding(false);
                life.tellBones(false);
               
                life.energyBuffer();
            }
Godmode
Code:
if (antiAgro)
        {
            Sneaky.sneak(0);
            Sneaky.sneak(0.1f);
            Sneaky.expose(0);
            Sneaky.expose(0.1f);
        }
No zombie agro
Code:
if (GUI.Button(new Rect(10, 0, 180, 30), "Agro all Zombies on me"))
            {
                Zombie[] zs = FindObjectsOfType(typeof(Zombie)) as Zombie[];
                foreach (Zombie player in zs)
                {
                    player.attract(Camera.main.transform.position);
                }
            }
Agro all zombies on given point
Code:
if (GUI.Button(new Rect(10, 410, 100, 30), "Swap UI"))
            {
                SleekRender.swapPaid();
                Images.swapPaid();
                
            }
Change UI to gold
Code:
SpawnItems.spawnItem(Convert.ToInt32(itemspawn), Convert.ToInt32(amount), Camera.main.transform.position);
Item spawning
Code:
Time.timeScale = (whatever speed, 1.0f is the default);
Easy speedhack
Code:
Color color = new Color(UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f));
            SpawnVehicles.create("(CAR NAME)" + UnityEngine.Random.Range(0, 2), 100, 100, Camera.main.transform.position + Vector3.up, transform****tation * Quaternion.Euler(-90f, 0f, 0f), color);
Spawn cars of a certain name
Code:
Network.Disconnect();
Quick DC
Code:
if (GUI.Button(new Rect(10, 380, 100, 30), "Reset Loot")){
                
                SpawnItems.reset();
            }
Reset map loot (Single Player only)
What is your point of making this we already have one only a minion is to lazy to orginize it / sticky it
#4 · 12y ago
MI
MinecraftGamer101010
Quote Originally Posted by TheMaskedOne View Post
What is your point of making this we already have one only a minion is to lazy to orginize it / sticky it
What's it called? Link?
#5 · 12y ago
Blueblood1
Blueblood1
Quote Originally Posted by jumboperson187 View Post
if (antiAgro)
{
Sneaky.sneak(0);
Sneaky.sneak(0.1f);
Sneaky.expose(0);
Sneaky.expose(0.1f);
}

No zombie agro
Doesn't work?
#6 · 12y ago
MI
MinecraftGamer101010
Quote Originally Posted by Blueblood1 View Post
Doesn't work?
I think it has to be constant like godmode... (I used void Update() for godmode but it is well... bad (My PC might lag and when it does I die xD))
#7 · 12y ago
Gojin
Gojin
Thanks for this codes. =)
#8 · 12y ago
YO
Yolo Leon
thanks for all the code <3
#9 · 12y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • I found some source codes for CA hacks (Ithink-Aimbot)By trane25 in Combat Arms Hack Coding / Programming / Source Code
    14Last post 12y ago
  • Need some Source Codes for Menu HackBy taylan in WarRock Hack Source Code
    8Last post 15y ago
  • Error Codes For Simple Memory HacksBy TheGTAHeroes in CrossFire PH Discussions
    13Last post 13y ago
  • a simple question for mw3 hack makersBy cracker415 in Call of Duty Modern Warfare 3 Discussions
    6Last post 14y ago
  • give me .net(code) for warrock hacksBy srinuv in WarRock - International Hacks
    7Last post 17y ago

Tags for this Thread

#hacks#source code#unturned