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 › Programming Tutorials › [Delphi]Stamina Hack

[Delphi]Stamina Hack

Posts 1–14 of 14 · Page 1 of 1
RO
RoB07
[Delphi]Stamina Hack
Well, first we need a function that can edit values of memory addresses, luckily for you, I have done that:
Code:
function EditMemory(Address: Integer; Value: Integer): Boolean;
var
  ProcessId, WindowName, HandleWindow: Integer;
  Write: Cardinal;
begin
  WindowName := FindWindow(nil, 'WarRock');
  If WindowName = 0 then
  begin
  Result := False;
  Exit;
  end;
  GetWindowThreadProcessId(WindowName, @ProcessId);
  HandleWindow := OpenProcess(PROCESS_ALL_ACCESS, False, ProcessId);
  WriteProcessMemory(HandleWindow, Ptr(Address), @Value, 4, Write);
  CloseHandle(HandleWindow);
  Result := True;
end;
Then we will need a procedure to repeatingly set the value of an address aka. freeze the address:
Code:
procedure StaminaHack();
begin
  while 1 = 1 do
  begin
   EditMyMemory($007F2B34, $42C80000);
   Sleep(5);
  end;
end;
Now, that will work fine but it will freeze your program completly, so we need to run it in a new thread:
Code:
procedure TForm1.Button1Click(Sender: TObject);
var
ThreadID: Cardinal;
begin
CreateThread(nil, 0, @StaminaHack, nil, 0, ThreadID);
end;
#1 · 18y ago
Alen
Alen
Delphi isn't good foo hacking ... several people claim it's even more detected than VB...
#2 · 18y ago
SW
swmartin
hy nice hack
#3 · 18y ago
masterboy120
masterboy120
Nice guide..but no one is using delphi but delphi is completely undetected
#4 · 18y ago
Alen
Alen
No it is not, most CEs are delphi ... so are several other hack tools...
#5 · 18y ago
castaway
castaway
Quote Originally Posted by mastasnip3 View Post
No it is not, most CEs are delphi ... so are several other hack tools...
Most?
All Uce's + CE are delphi based, you need to be very good coder to hide the strings.
#6 · 18y ago
KK
kkookk
plz help me i am new dont dont know much what i need do with that codes?
#7 · 18y ago
OL
olie122333
don't spam, you should think b4 u post nub
#8 · 18y ago
ME
meilsenaa
Ïîïóëÿöèîííûé èíäåêñ êàê àðãóìåíò ïåðèãåëèÿ


ôîðóì
ôîðóì
ôîðóì
ôîðóì
ôîðóì
#9 · 17y ago
GG2GG
GG2GG
i dont get it a lot of forighn spam recently :S
#10 · 17y ago
SH
ShadeSeven
Nice!
omg dont say "wat do i do with the code" u nub. unless u have delphi (used to be borland but now made by codegear) AND have decent programming skills - not that this particular piece of code requires much - then u may IGNORE THIS!
delphi is available legally here:
Delphi
and illegally (i do not endorse this) here:
CodeGear Development Studio 2007 (Borland Delphi 2007) (download torrent) - TPB (you need a torrent app for this)
#11 · 17y ago
SN
snagg57
0.0 nice hope you keep working on it
#12 · 17y ago
bananamaninc
bananamaninc
dephi sucks man
#13 · 17y ago
Micheltjuh
Micheltjuh
To those who said 'Delphi is highly detectable'
It doesn't really matter what language it is in, a good hacking prevention system should also be able to detect C++ and any other programming language, since they can just use the same methods on it.

CE is not completely coded in Delphi, the drivers it uses are coded in C.
#14 · 17y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • Undetected Stamina Hack!By nbr1dan in WarRock - International Hacks
    18Last post 19y ago
  • Stamina hackBy master987 in WarRock - International Hacks
    1Last post 19y ago
  • [Release] Stamina hackBy ziom2322 in WarRock - International Hacks
    6Last post 19y ago
  • Stamina HackBy xxHackerxx in WarRock - International Hacks
    3Last post 19y ago
  • Stamina Hack!By ltkort213 in WarRock - International Hacks
    3Last post 19y ago

Tags for this Thread

#delphistamina#hack