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 › Post Your Source Codes Here

Post Your Source Codes Here

Posts 31–45 of 176 · Page 3 of 12
…
Kunii
Kunii
Quote Originally Posted by desertflame View Post
Cant you just inject c# with reflector... why use titanium and such?
Free thanks for you. (Miss clicked)

Quote Originally Posted by desertions View Post


I thought reflector dlls and titanium injections were different?
Or does reflector work as an injector aswell?..

#desertlyfe
You can't inject with .Net Reflector, but you can reprogram parts of it to your liking.
#31 · 12y ago
MI
MinecraftGamer101010
Quote Originally Posted by xiEatNoodlezx View Post
Code:
if(//key)
{
if(Noodle.Achieve < 1)
{
SteamUserStats.IndicateAchievementProgress("crimesagainstzombanity", 500, 0x3e8);
SteamUserStats.IndicateAchievementProgress("outdoorsman", 500, 0x3e8);
SteamUserStats.IndicateAchievementProgress("hunter", 50, 100);
SteamUserStats.IndicateAchievementProgress("crimesagainsthumanity", 50, 100);
SteamUserStats.IndicateAchievementProgress("hoarder", 500, 0x3e8);
SteamUserStats.SetAchievement("abridgetoofar");
SteamUserStats.SetAchievement("adayinthesun");
SteamUserStats.SetAchievement("chess");
SteamUserStats.SetAchievement("trueguts");
SteamUserStats.SetAchievement("graduate");
SteamUserStats.SetAchievement("hero");
SteamUserStats.SetAchievement("bandit");
SteamUserStats.SetAchievement("knowledgeable");
SteamUserStats.SetAchievement("skilled");
SteamUserStats.SetAchievement("experienced");
SteamUserStats.StoreStats();
}
Noodle.Achieve++
}
Unlocks Achievements
Where is the directory for Steamworks.dll? I have tried ALL the .dll files in the Steam folder and none worked.
#32 · 12y ago
TheMaskedOne
TheMaskedOne
Quote Originally Posted by MinecraftGamer101010 View Post
Where is the directory for Steamworks.dll? I have tried ALL the .dll files in the Steam folder and none worked.
using steamworks;
#33 · 12y ago
MI
MinecraftGamer101010
Quote Originally Posted by TheMaskedOne View Post
using steamworks;
It's all good now, "using steamworks;" didn't work until I referenced 'Assembly-CSharp-firstpass.dll'. ^^
#34 · 12y ago
Blueblood1
Blueblood1
-Version: All
-Teleports all items on the map to you.

Code:
                if (GUILayout.Button("Test"))
                {
                    Item[] itemArray = UnityEngine.Object.FindObjectsOfType(typeof(Item)) as Item[];
                    foreach (Item item in itemArray)
                    {
                        Transform teleportitems = item.transform;
                        teleportitems.position = Camera.main.transform.position;
                    }
                }
#35 · 12y ago
Blueblood1
Blueblood1
-Version: All
-Teleports all zombies to you.

Code:
                if (GUILayout.Button("Test"))
                {
                    Zombie[] zombieArray = UnityEngine.Object.FindObjectsOfType(typeof(Zombie)) as Zombie[];
                    foreach (Zombie zombie in zombieArray)
                    {
                        Transform teleportzombies = zombie.transform;
                        teleportzombies.position = Camera.main.transform.position;
                    }
                }
#36 · 12y ago
AlexGeoZz1
AlexGeoZz1
Quote Originally Posted by Blueblood1 View Post
-Version: All
-Teleports all zombies to you.

Code:
                if (GUILayout.Button("Test"))
                {
                    Zombie[] zombieArray2 = UnityEngine.Object.FindObjectsOfType(typeof(Zombie)) as Zombie[];
                    foreach (Zombie zombie2 in zombieArray2)
                    {
                        Transform teleportzombies = zombie2.transform;
                        teleportzombies.position = Camera.main.transform.position;
                    }
                }
Thanks for these sources dude
#37 · 12y ago
Blueblood1
Blueblood1
Quote Originally Posted by AlexGeoZz1 View Post
Thanks for these sources dude
Yeah I'm kinda bored at the moment, just kinda seeing what i can do.
#38 · 12y ago
AlexGeoZz1
AlexGeoZz1
Quote Originally Posted by Blueblood1 View Post
Yeah I'm kinda bored at the moment, just kinda seeing what i can do.
My menu is really taking shape now :P Really appreciate what your doing man !
#39 · 12y ago
DA
danglybutz
I don't get it, Where is the steamworks DLL?

I see it in other games folders, but not in unturned...
#40 · 12y ago
JU
jumboperson187
Quote Originally Posted by Blueblood1 View Post
-Version: All
-Teleports all items on the map to you.

Code:
                if (GUILayout.Button("Test"))
                {
                    Item[] itemArray = UnityEngine.Object.FindObjectsOfType(typeof(Item)) as Item[];
                    foreach (Item item in itemArray)
                    {
                        Transform teleportitems = item.transform;
                        teleportitems.position = Camera.main.transform.position;
                    }
                }
This is currently in lick, at Numpad 5. Unfortunately this doesn't work in MP.
#41 · 12y ago
MI
MinecraftGamer101010
Quote Originally Posted by danglybutz View Post
I don't get it, Where is the steamworks DLL?

I see it in other games folders, but not in unturned...
Add 'Assembly-CSharp-firstpass.dll'.
#42 · 12y ago
DA
danglybutz
Quote Originally Posted by MinecraftGamer101010 View Post
Add 'Assembly-CSharp-firstpass.dll'.
Thanks, but some people are dicks.

Seriously, Thanks!
#43 · edited 12y ago · 12y ago
EN
end360
If someone could release a GUI player list that would be nice, as i failed at making one.
#44 · 12y ago
Blueblood1
Blueblood1
Quote Originally Posted by end360 View Post
If someone could release a GUI player list that would be nice, as i failed at making one.
I might in the morning, it's 4:40 am :P
#45 · 12y ago
Posts 31–45 of 176 · Page 3 of 12
…

Post a Reply

Similar Threads

  • Ask for Source Codes here / Release your Source Codes here [Collection]By taylan in WarRock Hack Source Code
    24Last post 15y ago
  • Release your .SQF Source Code Here! (Godmode, ESP, Etc)By ItsZaydeh in DayZ Mod & Standalone Hacks & Cheats
    28Last post 11y ago
  • Post your USED codes here!By MuffinHD in League of Legends Discussions
    47Last post 12y ago
  • Post your Auth Codes here! (RSBots.net)By Ravallo in Runescape Hacks / Bots
    220Last post 14y ago
  • Post your game name hereBy styx23 in WarRock - International Hacks
    49Last post 19y ago

Tags for this Thread

None