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 › C++/C Programming › Can't get stamina to work

QuestionCan't get stamina to work

Posts 1–4 of 4 · Page 1 of 1
yearupie
yearupie
Can't get stamina to work
Hello forum members,

I have a problem with the stamina hack.
I don't get this hack to work.
Further work most other hacks.

I disabled all other hacks.

Code:
// Yearupie.cpp : Defines the exported functions for the DLL application.
//

#include "Stdafx.h"
#include <Windows.h>
#include <Stdio.h>

/* Adressen zijn van 22-2-2010 van addylogger */
#define ADR_PLAYERPOINTER 0x00CEFDB8
#define ADR_SERVERPOINTER 0x00BEF520
#define OFS_STAMINA 0x28

HANDLE Warrock;
DWORD *ingame= (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame= (DWORD*)ADR_SERVERPOINTER;

/* Makkelijk om te kopieren, minder typwerk */
// DWORD dwPlayerPtr=*(DWORD*)ADR_PLAYERPOINTER;
// DWORD dwServerPtr=*(DWORD*)ADR_SERVERPOINTER;


// ...

/* Stamina */
void stamina ()
{
	DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
	if(dwPlayerPtr != 0)
	{
		*(float*)(dwPlayerPtr+OFS_STAMINA) = 100;
	}
}
// ...

void snip()
{
	for(;; ) 
	{
		if(*ingame)
		{
			//fastAll(); //werkt
			//speedUp(); //werkt
			//speedDown(); //werkt
			//scope(); // werkt
			//superJump(); // werkt
			//nfd(); // werkt
			//teleport(); // werkt
			stamina(); // ---------- werkt niet ! ----------
			//noFog(); // werkt
		}
		if(*outgame)
		{
			// spread(); // werkt
			// noBound(); // werkt
			// premium(3); // werkt
		}
		Sleep(200);
	}
}
BOOL WINAPI DllMain(HINSTANCE hModule,DWORD dwReason,LPVOID lpvReserved){
	if(dwReason==DLL_PROCESS_ATTACH){
		CreateThread(0,0,(LPTHREAD_START_ROUTINE)snip,0,0,0);
		MessageBoxA(NULL, "Made by Yearupie\n Email: wh4l@live.nl", "Credits", MB_OK);
	}
	return TRUE;
}
#1 · 16y ago
'Bruno
'Bruno
Did you make it urself? ;\
#2 · 16y ago
PI
Pixipixel_
I guess this is leeched or else you would know where is the problem.


Adrs Mem problem. Update your addies.
#3 · 16y ago
yearupie
yearupie
I found solution, bad addy logger!
#4 · edited 16y ago · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • I can't get EliteVision to Work.By josamko in Combat Arms Hacks & Cheats
    13Last post 18y ago
  • Can't get hacks to workBy chokeonaloaf in Combat Arms Hacks & Cheats
    2Last post 18y ago
  • I can't get any hack working!By rickbovenkamp in WarRock Discussions
    7Last post 16y ago
  • how can i get teamspeak to work?By firstto100 in Combat Arms Hacks & Cheats
    8Last post 17y ago
  • Can't get hacks to workBy zanma in Combat Arms Help
    6Last post 16y ago

Tags for this Thread

None