Page 1 of 3 123 LastLast
Results 1 to 15 of 38
  1. #1
    Izaakk's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    4

    WORKING BASE C++

    I found it before got removed from pastebin.

    Code:
    /*-------------------------------------------------------------------------------
    Tool: Microsoft Visual Studio C++ 2013 Update 4
    Project: Propeties > General > Configuration Type: Dynamic Library (.dll)
    File: Main.cpp
    Build Type: Release
    
    Extreme Injector:
    > Manual Map
    > Auto Inject [Checked]
    > Stealth Inject [Checked]
    > Inject Delay 2000
    > Erase PE [Checked]
    > Hide Module [Checked]
    -------------------------------------------------------------------------------*/
    
    #include <windows.h>
    
    void __stdcall Main()
    {
    	while(true)
    	{
    		*(DWORD*)0x101E15B0 = 999;
    		*(DWORD*)0x101E13B4 = 255;
    
    		Sleep(50);
    	}
    }
    
    bool __stdcall DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	DisableThreadLibraryCalls(hModule);
    
    	if(dwAttached == 1)
    	{
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)&Main,0,0,0);
    	}
    	
    	return true;
    }
    Last edited by Izaakk; 01-11-2015 at 10:20 AM.

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

    Encik Ayam (01-12-2015),GameCube64Bit (01-11-2015),gmactizex (01-23-2015),Minerva (05-29-2016)

  3. #2
    HaruShots's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Location
    Somewhere on earth
    Posts
    145
    Reputation
    10
    Thanks
    1,382
    My Mood
    Busy
    This is the ammo and health hack nice.

  4. #3
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,778
    My Mood
    Angelic
    Quote Originally Posted by HaruShots View Post
    This is the ammo and health hack nice.
    health hack but you can change that with ammo or any hack
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  5. #4
    Encik Ayam's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    186
    My Mood
    Amazed
    Copy That Code Then Paste At Main.cpp ? right ?

  6. #5
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,778
    My Mood
    Angelic
    Quote Originally Posted by Encik Ayam View Post
    Copy That Code Then Paste At Main.cpp ? right ?
    Yes in main cpp
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  7. #6
    Encik Ayam's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    186
    My Mood
    Amazed
    Quote Originally Posted by COD3RIN View Post


    Yes in main cpp
    does you mean clear all the code in main.cpp then paste my source code right ?

  8. #7
    Monster1999's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    can teach me this tutorial hack ? please i don't know how to use source code

  9. #8
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,778
    My Mood
    Angelic
    Quote Originally Posted by Monster1999 View Post
    can teach me this tutorial hack ? please i don't know how to use source code
    Learn c++ by watching in youtube type c++ tutorial
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  10. The Following User Says Thank You to COD3RIN For This Useful Post:

    nikazizi97 (01-14-2015)

  11. #9
    boykinz's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    19
    I try to compile it. only health is working,..

  12. #10
    zalantoth's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    129
    Nice Sia Its Work Already Compile And Try With New Code

  13. #11
    saifulzamri's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    DOG HOUSE
    Posts
    285
    Reputation
    10
    Thanks
    22
    My Mood
    Yeehaw
    where is main.cpp? where can i find it? or i need to create it? where to put the main.cpp??
    __NOTICE__

    NAME SAIFUL
    JOBS FIND HACK_USE HACK_PLAY HACK_CHEAT PEOPLE
    GAMES BARBIE_SPONGEBOB_BLACKSHOT_SUPER MARIO_BEN 10
    HOBBY FISHING_PEEING IN PEOPLE MOUTH_EATING

    __NOTICE__


  14. #12
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,778
    My Mood
    Angelic
    Quote Originally Posted by saifulzamri View Post
    where is main.cpp? where can i find it? or i need to create it? where to put the main.cpp??
    Here follow this how https://www.mpgh.net/forum/showthread.php?t=898623
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  15. #13
    sumanth102's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    pls can u send that main.cpp file to me? i dont have visual studio(too long to download).
    and how do i use that main.cpp file?

  16. #14
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,778
    My Mood
    Angelic
    Quote Originally Posted by sumanth102 View Post
    pls can u send that main.cpp file to me? i dont have visual studio(too long to download).
    and how do i use that main.cpp file?
    Read my qoute in top here follow this and paste that code in main.cpp
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  17. #15
    Hacker Fail's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    C++
    Posts
    2,136
    Reputation
    242
    Thanks
    12,562
    Good job bro, this base is very simple and easy to use ( for newbies )
    Member Level 1 since November, 2011
    Contributor since March, 2015
    Game Hacking Team : 06/14/2017

     

Page 1 of 3 123 LastLast

Similar Threads

  1. [working base]
    By lauwy in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 22
    Last Post: 09-04-2010, 01:52 PM
  2. Plz HElp WHit working BAse
    By Royku in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 1
    Last Post: 09-02-2010, 07:53 AM
  3. S>Combat Arms BASE!!!1$ [WORKING BASE] [PAYPAL ONLY]
    By hgmf8124 in forum Selling Accounts/Keys/Items
    Replies: 1
    Last Post: 08-23-2010, 10:16 AM
  4. need a working base with hook
    By speedforyou in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 31
    Last Post: 08-22-2010, 06:20 AM
  5. [help]working base
    By the grim reaper in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 7
    Last Post: 08-16-2010, 10:52 AM