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 › Download. Code Source PB [PointBlank]

Thumbs upDownload. Code Source PB [PointBlank]

Posts 1–15 of 52 · Page 1 of 4
CA
CaPeVaLdOfOrMiNiOn
Download. Code Source PB [PointBlank]
Google translation... Sorry I Brazilian

1. Make a DLL in C Project in devcpp
2. Save all files all
3. Create a file named addys.h
4. Change name:
dllmain.c -> cbase2.c
dll.h -> cbase2.h
5. Fill with the following code:

cbase2.c
Code:
#include "cbase2.h"

#include "addys.h"

LPTSTR i3engine = "PointBlank.i3Exec"; // handle PointBlank.i3Exec

DWORD adrWSOn, adrWSOff, OldProtection; // deklarasi variabel

BYTE RET[] = {0xC3}; //deklarasi byte untuk RET

BYTE PUSH_EBP[]= {0x55}; //deklarasi byte untuk PUSH_EBP

/*

Karena memwrite sudah terdeteksi HACKSHIELD, maka saya berupaya membuatkan

fungsi alternative selain memwrite dan undetected bernama MEMpatch

*/

//Check Apakah address tersebut di protect ?

void UnProtectAndModify(DWORD Offset, DWORD Pointer, DWORD Length){

VirtualProtect((void *)Offset, Length, PAGE_EXECUTE_READWRITE, &OldProtection); // check apakah address tsb dikunci / protected ? kalau iya, lakukan unprotect

RtlMoveMemory((void *)Offset, (const void*)Pointer, Length); // ubah address tsb menjadi writeable, dan lakukan patch dengan MEMpatch

VirtualProtect((void *)Offset, Length, OldProtection, &OldProtection); // protect lagi address tsb biar gk kena satpam

}

// Lakukan patch terhadap memory

void MEMpatch( BYTE *Offset, BYTE *ByteArray, DWORD Length){

UnProtectAndModify((DWORD)Offset , (DWORD)ByteArray , 1);

}

DWORD WINAPI InitAllHacks(LPVOID param) // thread telah dipatch. undetected 6 desember 2010

{

      while (1) { // jika thread telah aktif

        if (GetAsyncKeyState(VK_INSERT)&1) { // jika hotkey ditekan.

            DWORD dwI3CubeExec = (DWORD)GetModuleHandleA(i3engine); // dapatkan entry point module i3exec

            if (dwI3CubeExec > 0) { // jika PointBlank.i3exec telah di inject ke PointBlank.exe

                adrWSOn = dwI3CubeExec + (DWORD)ADR_WALLSHOT_NOBT;

                MEMpatch((BYTE*)adrWSOn, RET, sizeof(RET)); // lakukan hack terhadap memory

                MessageBeep(1); // Beritahukan jika cheat telah sukses di eksekusi

                    }

            }

        if (GetAsyncKeyState(VK_DELETE)&1) { // jika hotkey ditekan.

                DWORD dwI3CubeExec = (DWORD)GetModuleHandleA(i3engine); // dapatkan entry point module i3exec

                if (dwI3CubeExec > 0) { // jika PointBlank.i3exec telah di inject ke PointBlank.exe

                adrWSOff = dwI3CubeExec + (DWORD)ADR_WALLSHOT_NOBT;

                MEMpatch((BYTE*)adrWSOff, PUSH_EBP, sizeof(PUSH_EBP)); // lakukan hack terhadap memory

                MessageBeep(1); // Beritahukan jika Hack telah sukses di eksekusi

                    }

            }

        Sleep(10); // jeda untuk menghindari overheat / kelebihan beban

    }

    return (0); // kembalikan nilai ke 0 agar thread menjadi loop selama-nya

}

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

{

    DisableThreadLibraryCalls(hDll); // mencegah boros memori. SAVE Resource <img src="http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif?m=1218663747g" alt=":D" class="wp-smiley">

    if (dwReason == DLL_PROCESS_ATTACH) { // jika dll ter-attach
        MessageBox, MB_OK | MB_ICONINFORMATION); // berikan salam pembuka jika dll telah ter-attach ke PROCESS
           CreateThread(0, 0, (LPTHREAD_START_ROUTINE)InitAllHacks, 0, 0, 0); // jalanin thread-nya
    }

    return TRUE; // mencoba berulang kali sampai thread ter-attach
 }
cbase2.h
Code:
# Ifndef __RCD_BASE2_H

# Define __RCD_BASE2_H

# Define WIN32_LEAN_AND_MEAN / / Exclude rarely-Used stuff from Windows headers

# Include

DWORD WINAPI InitAllHacks ( LPVOID param);

# Endif
6. Run RCDLogger 3.0 and c & p addys that have been found to file "addys.h"
7. Click Execute | Rebuild All
8. Make sure there are no errors, try to inject etc which ye made to the PB
9. Making DLL Hack Done!

NB: If you are not working etc. please run the RCD Logger 3 and c & p again offsets that have been found, if you've detected, etc. Try changing the code that is in part:
- Loop (InitAllHacks)
- Memory editing (MEMpatch)
- Hook (Loop, GetAsyncKeyState, CreateThread, et al)
Hook that has been detected Hackshield usually occurs in the Loop, is:
- GetAsyncKeyState to call the function ex:
i f (GetAsyncKeyState (VK_F12) & 1)
{
MajorMissionHack ();
Sleep (500);
}
And also
if (:: GetAsyncKeyState (VK_F12) & 1) DoMisiMayorHack ();

CREDIT:

RCD and CaPeVaLdOfOrMiNiOn
#1 · 15y ago
Flash
Flash
Is this NoMenu or D3D base?
And give credits if you leeched it, please ...
#2 · 15y ago
Chuck Norris
Chuck Norris
Nice!
Thank you
wish me luck on translating this, and rip the usefull parts haha...


EDIT:
Fail, is it me or is this for a different game haha..
Pointblank..
We need Operation Blackout...
#3 · edited 15y ago · 15y ago
goblox
goblox
@ CaPeVaLdOfOrMiNiOn
did you have license from : Richard Yusan A.K.A RCD to mirroring this...???
i mean RCD base,RCD logger...???
#4 · 15y ago
HaX4LiFe!
HaX4LiFe!
Quote Originally Posted by Dreamgun View Post
Nice!
Thank you
wish me luck on translating this, and rip the usefull parts haha...


EDIT:
Fail, is it me or is this for a different game haha..
Pointblank..
We need Operation Blackout...
point blank is the same game as project blackout lol
#5 · 15y ago
ImaOwn
ImaOwn
Quote Originally Posted by HaX4LiFe! View Post
point blank is the same game as project blackout lol
omfg i dont know how many times I have to say this...it is not the same damn game if it was the same game the hacks for pointblank that you can find on other forums would work on project blackout....and when making hacks pointblank has different adresses than project blackout ...god damn case closed
#6 · 15y ago
HaX4LiFe!
HaX4LiFe!
Quote Originally Posted by ImaOwn View Post
omfg i dont know how many times I have to say this...it is not the same damn game if it was the same game the hacks for pointblank that you can find on other forums would work on project blackout....and when making hacks pointblank has different adresses than project blackout ...god damn case closed
its the same engine ect just a different name but yea the addresses are different like CA NA and CA EU im not stupid as u look
#7 · 15y ago
ImaOwn
ImaOwn
Quote Originally Posted by HaX4LiFe! View Post
its the same engine ect just a different name but yea the addresses are different like CA NA and CA EU im not stupid as u look
whatever im not gonna argue with some fag on the forums but its not the same game buddy ...... combat arms euro version is called combat arms EU ...project blackout is not called PointBlank NA version there different games
#8 · 15y ago
Rigby
Rigby
but they have the same engine which allows you to use the same source code and menu base becuz of that
#9 · 15y ago
CA
CaPeVaLdOfOrMiNiOn
Quote Originally Posted by ImaOwn View Post
omfg i dont know how many times I have to say this...it is not the same damn game if it was the same game the hacks for pointblank that you can find on other forums would work on project blackout....and when making hacks pointblank has different adresses than project blackout ...god damn case closed
Quote Originally Posted by HaX4LiFe! View Post
its the same engine ect just a different name but yea the addresses are different like CA NA and CA EU im not stupid as u look
Quote Originally Posted by goblox View Post
@ CaPeVaLdOfOrMiNiOn
did you have license from : Richard Yusan A.K.A RCD to mirroring this...???
i mean RCD base,RCD logger...???
Quote Originally Posted by ImaOwn View Post
whatever im not gonna argue with some fag on the forums but its not the same game buddy ...... combat arms euro version is called combat arms EU ...project blackout is not called PointBlank NA version there different games
Quote Originally Posted by Dreamgun View Post
Nice!
Thank you
wish me luck on translating this, and rip the usefull parts haha...


EDIT:
Fail, is it me or is this for a different game haha..
Pointblank..
We need Operation Blackout...

Quote Originally Posted by Flash View Post
Is this NoMenu or D3D base?
And give credits if you leeched it, please ...
GOOGLE TRANSLATION!

This source is for all versions of PB, Indonesia, Brazil, USA, All versions ...

I took Richard's Blog Yusan yes, Credits to him by the Source and Credit to me By Topic! You just have to make some modifications to work, and for this you have to know programming, I recommend studying this source to develop new hacks!


The Source is a HotKyes, pay attention to the controls ..

So thank you, will not fall off your finger!
#10 · edited 15y ago · 15y ago
AVGN
[MPGH]AVGN
Quote Originally Posted by ImaOwn View Post
omfg i dont know how many times I have to say this...it is not the same damn game if it was the same game the hacks for pointblank that you can find on other forums would work on project blackout....and when making hacks pointblank has different adresses than project blackout ...god damn case closed
you are right and wrong

for example:

Combat Arms EU and NA have different addies..

BUT THEY ARE STILL THE SAME GAME
#11 · 15y ago
Chuck Norris
Chuck Norris
Its not the same game, its the same source...
Operation Blackout uses Point blank source..
Go to the mission menu..

All those cards together say: P O I N T B L A N K
clear?
#12 · 15y ago
FU
FUKO
Quote Originally Posted by Dreamgun View Post
Its not the same game, its the same source...
Operation Blackout uses Point blank source..
Go to the mission menu..

All those cards together say: P O I N T B L A N K
clear?
What kind of weed do you smoke, so I can get that kind?
The game we play is Project Blackout, not Operation Blackout.
clear?
#13 · 15y ago
Chuck Norris
Chuck Norris
Quote Originally Posted by Fuko View Post
What kind of weed do you smoke, so I can get that kind?
The game we play is Project Blackout, not Operation Blackout.
clear?
rofl, im just tired..
Blame school or something..
#14 · 15y ago
HaX4LiFe!
HaX4LiFe!
lol this a boring topic seriously it uses the same engine as point blank same chars same guns same fkin everything just different name and addies nothing more
#15 · 15y ago
Posts 1–15 of 52 · Page 1 of 4

Post a Reply

Tags for this Thread

None