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 › Other MMORPG Hacks › Terraria Hacks › how to make a internal

how to make a internal

Posts 1–3 of 3 · Page 1 of 1
78
78ThousandNumbers
how to make a internal
so i just wanted to make a client.

but idk how :9

so then i posted here so i can get some answers


what i wanted to make is an ImGui hack so i can drag windows with hack module on it
i just wanted to see how to make to visual studio code, or any base code that i can work on

because i dont think my base code is working at all and idk how to make ImGui windows that
actually can give you items
i have not worked with ImGui before and i've only ever tried building an .exe example build that
doesn't even have any referenced adresses
my whole life i have never even injected an ImGui dll to terraria :1

i tried making the dll but i failed only for it to build but not make a window (;1)

im sad and seeking help and yes i am sane
#1 · 5y ago
HiImKyle
HiImKyle
Edit the Terraria EXE with dnSpy, you can add whatever you want that way and it's internal. Horrible but it's what you want and it's the easiest way.
#2 · 5y ago
Soibelarus
Soibelarus
about GUI: https://******.com/nikuya3/xnaforms

chat : Main.DoUpdate_HandleChat() 'commands'
interface : Main.drawFPS() 'buttons'
update : Player.update() and Player.updatebuffs() 'mods'

examples:
chat:
if (message.toLower() == ".godmode") //if the message matches ".godmode", then godmode - toggles its value (true-false, false-true) .toLower - returns a copy of this string converted to lowercase (So that the command is accepted by such, sUcH, SUCH letters)
{
Mods.godmode = !Mods.godmode;
Main.newText((godmode ? "En" : "Dis") + "able godmode.");
//if godmode = true -> En, else -> Dis
}
update:
if (godmode)
{

Main.player[Main.myPlayer].statLife = Main.player[Main.myPlayer].statLifeMax; //infhp
Main.player[Main.myPlayer].statMana = Main.player[Main.myPlayer].statManaMax; //infmana
Main.player[Main.myPlayer].breath = Main.player[Main.myPlayer].breathMax - 1; //infbreath
if (Terraria.Main.netMode == 1)
{
NetMessage.SendData(16, -1, -1, null, Terraria.Main.myPlayer, 0f, 0f, 0f, 0, 0, 0); //send packet to server
}

}
interface:
if (Mods.godmode)
{

Main.spriteBatch.DrawString(FontAssets.MouseText.V alue, "Godmode", new Vector2(30f, 20f), Color.Green, 0f, default(Vector2), 1f, SpriteEffects.None, 0f); //create an inscription "Godmode", if godmode enable. vector2 - position (х,y) and etc.
}
#3 · edited 5y ago · 5y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • How to make CS:GO Internal CheatsBy SomeGuy19 in C++/C Programming
    2Last post 7y ago
  • How i can make hack (internal) VAC UndetectedBy John_Reaper in Counter-Strike 2 Coding & Resources
    11Last post 9y ago
  • How I make wallhack?By RaidenDXX in WarRock - International Hacks
    6Last post 20y ago
  • How to make a ZombieBy arunforce in Art & Graphic Design
    2Last post 20y ago
  • How to make the server runBy wowhaxor in Gunz General
    3Last post 20y ago

Tags for this Thread

None