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 › Piercing Blow Hacks & Cheats › Piercing Blow Hack Coding/Source Code › [Offset Value]

[Offset Value]

Posts 1–9 of 9 · Page 1 of 1
peywzt
peywzt
[Offset Value]
can u make n' share OFFSET VALUE GENERATOR for:

-Mayor Title
-Unlock All Weapon
-Unlimited Ammo
cose using CE is to hard for me
thx 4 All

I HAVE Exsample Source:
but i dont know offset value

Code:
#define _CRT_SECURE_NO_WARNINGS
#include <windows.h>
#include <tlhelp32.h>


char *pProcessWindowTitle = "Project Blackout";
char *pProcessWindowClass = "I3VIEWER";
char *pProcessModuleName = "PBlackout.i3Exec";

// etc...
UINT_PTR uipUserRankValue = 50; //rank
UINT_PTR uipUserPointsValue = 50000; //poin

UINT_PTR uiptrFinalRank, uiptrFinalPoints;

bool isInitMmhMemory = true;

DWORD dwProcessID;
UINT_PTR uipMmhBaseAddress;
HANDLE hProcess;

DWORD GetModuleBase(LPSTR lpModuleName, DWORD dwProcessId)
{
MODULEENTRY32 lpModuleEntry = {0};
HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwProcessId);

if(!hSnapShot)
return NULL;
lpModuleEntry.dwSize = sizeof(lpModuleEntry);
BOOL bModule = Module32First( hSnapShot, &lpModuleEntry );
while(bModule)
{
if(!strcmp( lpModuleEntry.szModule, lpModuleName ) )
{
CloseHandle(hSnapShot);
return (DWORD)lpModuleEntry.modBaseAddr;
}
bModule = Module32Next( hSnapShot, &lpModuleEntry );
}
CloseHandle( hSnapShot );
return NULL;
}

// DeRef() = credit L. Spiro (MHS)
UINT_PTR DeRef( UINT_PTR _uiptrPointer ) {
UINT_PTR uiptrRet;
if (!::ReadProcessMemory(hProcess, reinterpret_cast<LPVOID>(_uiptrPointer), &uiptrRet, sizeof(uiptrRet), NULL)) { return 0UL; }
return uiptrRet;
}

// inisialisasi proses
void InitApplicationProcess()
{
bool isFindWindow = true;
HWND hWnd = NULL;

while(isFindWindow)
{
if((hWnd = FindWindowA(pProcessWindowClass, pProcessWindowTitle)) != NULL) // jika window ditemukan
{
isFindWindow = false;
}
Sleep(500);
}

GetWindowThreadProcessId(hWnd, &dwProcessID);
hProcess = OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ|PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION, FALSE, dwProcessID);
}

void MajorMissionHack()
{
if(isInitMmhMemory)
{
uipMmhBaseAddress = (DWORD)GetModuleHandle(pProcessModuleName);

// misal: pointer yang didapat = PBlackout.i3Exec+00471234 dengan offset 0xA12, tuliskan seperti di bawah!
uiptrFinalRank = DeRef(uipMmhBaseAddress + 0x4C2F38) + 0xA9D; // i need this offset value!
uiptrFinalPoints = DeRef(uipMmhBaseAddress + 0x4C2F38) + 0xAA1; // i need this offset value!

isInitMmhMemory = false;
}

// WriteProcessMemory pada pointer 'rank', berikan nilai uipUserRankValue (35)
::WriteProcessMemory(hProcess, reinterpret_cast<LPVOID>(uiptrFinalRank), &uipUserRankValue, sizeof(uipUserRankValue), NULL);

// WriteProcessMemory pada pointer 'points', berikan nilai uipUserPointsValue (999999) LOL!
::WriteProcessMemory(hProcess, reinterpret_cast<LPVOID>(uiptrFinalPoints), &uipUserPointsValue, sizeof(uipUserPointsValue), NULL);
}

void LovelyLoopy()
{
// ok, berikan salam dulu! 
MessageBox(0, "Misio Sukses. Lanjutkan!", "Dll terinject", MB_OK + MB_ICONASTERISK);

InitApplicationProcess();

while(1) // loop selamanya 
{
if(GetAsyncKeyState(VK_F12)&1) // jika F12 ditekan
{
MajorMissionHack(); // panggil fungsi 'MajorMissionHack()'
Sleep(500);
}

Sleep(1);
}
}

BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
DisableThreadLibraryCalls(hDll);

if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)LovelyLoopy, NULL, NULL, NULL);
} 
else if(dwReason == DLL_PROCESS_DETACH)
{
CloseHandle(hProcess);
}

return TRUE;
}

By: Sapta Agung (My Master)
#1 · edited 15y ago · 15y ago
J
J
What do you mean offset value?

The decimal value?
#2 · 15y ago
gosicks
gosicks
wrong credit.... thats oldhack lol!
#3 · 15y ago
SE
sepangah
Om hero ngakak,,,

Even if looking for ammo, etc,, u must unpack i3exec,,
u can find value, etc,, i3exec << that's all,,,
#4 · 15y ago
peywzt
peywzt
Quote Originally Posted by gosicks View Post
wrong credit.... thats oldhack lol!
so wrong, I just want to be corrected by you guys

Quote Originally Posted by sepangah View Post
Om hero ngakak,,,

Even if looking for ammo, etc,, u must unpack i3exec,,
u can find value, etc,, i3exec << that's all,,,
how, I could unpack i3exec,What tools?

Thx
#5 · edited 15y ago · 15y ago
peywzt
peywzt
can u help me for fine offset value in Project Blackout??
#6 · 15y ago
IN
indra11tng
Quote Originally Posted by peywzt View Post
so wrong, I just want to be corrected by you guys



how, I could unpack i3exec,What tools?

Thx



I3exec can't unpack, and they dont have tutorial unpack. They must unpack i3exec old to get code2 (I am not understand programing).
#7 · 15y ago
demian_wrangler
demian_wrangler
this Projectblackout Forum....
#8 · 15y ago
GE
Geminikiller™
#9 · 15y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Tags for this Thread

None