Page 1 of 4 123 ... LastLast
Results 1 to 15 of 52
  1. #1
    CaPeVaLdOfOrMiNiOn's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Location
    sd
    Posts
    62
    Reputation
    10
    Thanks
    36
    My Mood
    Breezy

    Thumbs up 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="https://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

  2. The Following 26 Users Say Thank You to CaPeVaLdOfOrMiNiOn For This Useful Post:

    666peligro666 (11-14-2012),anggareviza (09-19-2015),azdhira (03-08-2011),baragbag (09-16-2014),chicobop13 (10-28-2012),comalonz (06-12-2014),Darkmage33 (09-07-2012),darkvava1912 (02-11-2011),darkzone1920 (03-06-2011),Fogest (02-08-2011),hambrut (04-25-2012),himazi_shu (08-07-2014),jamgadang (02-12-2011),Jhem (04-25-2012),KurniIND (06-24-2015),NewCories (03-11-2011),reysha20 (04-30-2012),samjad200 (09-20-2012),serious! (03-28-2013),svyat0202 (04-18-2011),Turbulence (02-28-2011),uschana123 (01-28-2014),Yakinican (10-06-2014),zhefry (03-19-2015),__Vj--h4ck__ (03-06-2011),~Silver~ (04-27-2012)

  3. #2
    Flash's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Slovenia
    Posts
    7,691
    Reputation
    561
    Thanks
    1,872
    My Mood
    Fine
    Is this NoMenu or D3D base?
    And give credits if you leeched it, please ...
    [IMG]https://i1171.photobucke*****m/albums/r543/Ferzato/separator.png[/IMG]

    Former Middleman
    07-07-2011 - 09-13-2011


    [IMG]https://i1171.photobucke*****m/albums/r543/Ferzato/separator.png[/IMG]


    Skype: mpgh.flash
    MSN: mpgh.flash@msn.com


    “I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.”
    - Eminem

  4. The Following 2 Users Say Thank You to Flash For This Useful Post:

    darkvava1912 (02-11-2011),NewCories (03-11-2011)

  5. #3
    Chuck Norris's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    Between my ears
    Posts
    1,703
    Reputation
    86
    Thanks
    456
    My Mood
    Angelic
    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...
    Last edited by Chuck Norris; 02-08-2011 at 07:06 AM.
    “Those who control the past, control the future: who controls the present controls the past” ~ George Orwell

    Its me, Dreamgun

  6. #4
    goblox's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    185
    Reputation
    10
    Thanks
    26
    My Mood
    Angelic
    @ CaPeVaLdOfOrMiNiOn
    did you have license from : Richard Yusan A.K.A RCD to mirroring this...???
    i mean RCD base,RCD logger...???

  7. #5
    HaX4LiFe!'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    1,639
    Reputation
    22
    Thanks
    1,420
    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

  8. #6
    ImaOwn's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    598
    Reputation
    36
    Thanks
    52
    My Mood
    Aggressive
    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

  9. #7
    HaX4LiFe!'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    1,639
    Reputation
    22
    Thanks
    1,420
    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

  10. #8
    ImaOwn's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    598
    Reputation
    36
    Thanks
    52
    My Mood
    Aggressive
    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

  11. #9
    Rigby's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    NJ
    Posts
    2,050
    Reputation
    37
    Thanks
    279
    My Mood
    Amazed
    but they have the same engine which allows you to use the same source code and menu base becuz of that

    Source Filmmaker Animator/Poster Maker
    Former Minecraft Minion
    Film Enthusiast
    TF2 Player

  12. #10
    CaPeVaLdOfOrMiNiOn's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Location
    sd
    Posts
    62
    Reputation
    10
    Thanks
    36
    My Mood
    Breezy
    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!
    Last edited by CaPeVaLdOfOrMiNiOn; 02-08-2011 at 03:06 PM.

  13. #11
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,679
    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




  14. #12
    Chuck Norris's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    Between my ears
    Posts
    1,703
    Reputation
    86
    Thanks
    456
    My Mood
    Angelic
    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?
    “Those who control the past, control the future: who controls the present controls the past” ~ George Orwell

    Its me, Dreamgun

  15. The Following User Says Thank You to Chuck Norris For This Useful Post:

    policejo (04-19-2011)

  16. #13
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    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?

  17. #14
    Chuck Norris's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    Between my ears
    Posts
    1,703
    Reputation
    86
    Thanks
    456
    My Mood
    Angelic
    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..
    “Those who control the past, control the future: who controls the present controls the past” ~ George Orwell

    Its me, Dreamgun

  18. #15
    HaX4LiFe!'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    1,639
    Reputation
    22
    Thanks
    1,420
    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

Page 1 of 4 123 ... LastLast