Need help?Download. Code Source PB [PointBlank] - MPGH - MultiPlayer Game Hacking & Cheats
Download. Code Source PB [PointBlank]
Posts 1–15 of 52 · Page 1 of 4
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
RCDBase2-maknyos.com.zipattachment deleted · 579 downloads before removal
Is this NoMenu or D3D base?
And give credits if you leeched it, please ...
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...
Originally Posted by 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...
point blank is the same game as project blackout lol
Originally Posted by HaX4LiFe!
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
Originally Posted by ImaOwn
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
Originally Posted by HaX4LiFe!
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
Originally Posted by ImaOwn
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
Originally Posted by HaX4LiFe!
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
Originally Posted by goblox
@ CaPeVaLdOfOrMiNiOn
did you have license from : Richard Yusan A.K.A RCD to mirroring this...???
i mean RCD base,RCD logger...???
Originally Posted by ImaOwn
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
Originally Posted by 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...
Originally Posted by Flash
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!
Originally Posted by ImaOwn
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
@ CaPeVaLdOfOrMiNiOn
did you have license from : Richard Yusan A.K.A RCD to mirroring this...???
i mean RCD base,RCD logger...???
but they have the same engine which allows you to use the same source code and menu base becuz of that
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?
Originally Posted by 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?
What kind of weed do you smoke, so I can get that kind?
The game we play is Project Blackout, not Operation Blackout.
clear?
Originally Posted by FUKO
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..
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