Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic

    [TUT]How to make memory hack

    Hello

    Title says it all

    Let's get started .

    ###

    First open up Visual Studio 2010 / 2008 ( Any version you have there )
    Then create a new project name it to any name u want . ( Should be Win32 Project )
    Then a new window will come out
    Click "Next" then pick DLL and click "Finish"

    Now for the coding ..

    ###
    ( If you C+P this just give credits okay ? ^^ )
    Just edit ..
    This base has No Change and No Recoil just edit the addies

    dllmain.cpp
    Code:
    #include<windows.h>
    #include <iostream>
    
    
    
    
    #define WeaponMgr	 0x??????
    
    using namespace std;
    
    
    
    
    
    
    
    
    
    
    void Hacks()
    {
    
    		for(;;) {
    	__asm pushad;
    
    
    
    
    
    //Memory
    bool change = true;
    bool norecoil = true;
    
    
    
    
    
    while(true)
    {
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponMgr);
    PDWORD Weapon = (PDWORD)(CShell + 0x?????? ); 
    
    
    
    
         
    
    
    
    
            
    
    
    			}
            }
    
    
    //Memory Functions
    if (change)
    {
    if (pWeaponMgr)
       {
           for(int i=0; i<560; i++)
    {
       if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
           *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x0000) = 100.0f;
    	   }
       }
    }
    
    
    if(norecoil)
    				   {
    					   if (pWeaponMgr) 
    
    						   for(int i=0 ; i<577 ; i++)
    
    						   {
    							   DWORD Wep = *(DWORD*)(*Weapon + 4*i);
    
    							   if(Wep)
    							   {
    								   for(int y = 0; y<9; y++)
    								   {
    									   
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x2000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x2000 + (4*y))) = (float)0;
    									   
    
    								   }
    							   } 
    
    						   } 
    }
    
    
     
     
    
    
    
    
    
    
    
    
    
    			
    
    
    Sleep(100);
    }
    __asm popad;
    }
    
     }
     
    //Put your DLLMain below
    ###

    Now your done ^^
    Just compile and see ..

    I did not created this tut just for you to C+P it's for you to learn .

    If you want some source codes .. just use @DaRk 's Stickied thread.

    You can add more features like See Ghost

    but first you need to go back to the bools part
    you have this right ?

    Code:
    bool norecoil = true;
    bool change = true;
    Now below bool change add this :

    Code:
    bool SeeGhost = true;
    Source Code of see ghost is :

    Code:
    if(Playerbasic) {
    	*(float*)(Playerbasic + 0x??) = (float)1.0;
    	*(float*)(Playerbasic + 0x??) = (float)1.0;
    	*(float*)(Playerbasic + 0x??) = (float)1.0;
    }
    That's all for today //

    Good Luck guys !
    Last edited by Sprite; 05-11-2012 at 05:12 AM. Reason: dllmain

  2. The Following 9 Users Say Thank You to Sprite For This Useful Post:

    eutje1 (05-14-2012),josharcz (05-11-2012),Purple. (10-22-2012),Raptor (05-11-2012),Ryuzaki™ (05-11-2012),seho jeong (05-13-2012),starsfighter (11-03-2013),Vahan96 (06-13-2012),Vincent Dominguez (02-25-2013)

  3. #2
    Ryuzaki™'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    At my headquarter, catching KIRA
    Posts
    1,671
    Reputation
    41
    Thanks
    6,254
    My Mood
    Lurking
    I think this lines are useless in this base:
    Code:
    #include <iostream>
    using namespace std;
    And check your loops, some readers might confuse upon reading.

    Anyway, Good job (I thought you put my dll main I was so nervous)

    Edit:
    Haha I thought you put the whole code but I just checked it, it has errors leecher proof
    Last edited by Ryuzaki™; 05-11-2012 at 01:38 AM.



  4. The Following User Says Thank You to Ryuzaki™ For This Useful Post:

    gudi (05-11-2012)

  5. #3
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic
    @xmen ..

    They're going to learn in that base I swear

  6. #4
    potatomaniac's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    PH
    Posts
    652
    Reputation
    19
    Thanks
    970
    My Mood
    Psychedelic
    Quote Originally Posted by zombiekilere View Post
    Hello

    Title says it all

    Let's get started .

    ###

    First open up Visual Studio 2010 / 2008 ( Any version you have there )
    Then create a new project name it to any name u want .
    Then a new window will come out
    Click "Next" then pick DLL and click "Finish"

    Now for the coding ..

    ###
    ( If you C+P this just give credits okay ? ^^ )
    Just edit ..
    This base has No Change and No Recoil just edit the addies

    dllmain.cpp
    Code:
    #include<windows.h>
    #include <iostream>
    
    
    
    
    #define WeaponMgr	 0x??????
    
    using namespace std;
    
    
    
    
    
    
    
    
    
    
    void Hacks()
    {
    
    		for(;;) {
    	__asm pushad;
    
    
    
    
    
    //Memory
    bool change = true;
    bool norecoil = true;
    
    
    
    
    
    while(true)
    {
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponMgr);
    PDWORD Weapon = (PDWORD)(CShell + 0x?????? ); 
    
    
    
    
         
    
    
    
    
            
    
    
    			}
            }
    
    
    //Memory Functions
    if (change)
    {
    if (pWeaponMgr)
       {
           for(int i=0; i<560; i++)
    {
       if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
           *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x0000) = 100.0f;
    	   }
       }
    }
    
    
    if(norecoil)
    				   {
    					   if (pWeaponMgr) 
    
    						   for(int i=0 ; i<577 ; i++)
    
    						   {
    							   DWORD Wep = *(DWORD*)(*Weapon + 4*i);
    
    							   if(Wep)
    							   {
    								   for(int y = 0; y<9; y++)
    								   {
    									   
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x2000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x0000 + (4*y))) = (float)0;
    									   *(float*)( Wep + (0x2000 + (4*y))) = (float)0;
    									   
    
    								   }
    							   } 
    
    						   } 
    }
    
    
     
     
    
    
    
    
    
    
    
    
    
    			
    
    
    Sleep(100);
    }
    __asm popad;
    }
    
     }
     
    //Put your DLLMain below
    ###

    Now your done ^^
    Just compile and see ..

    I did not created this tut just for you to C+P it's for you to learn .

    If you want some source codes .. just use @DaRk 's Stickied thread.

    Hope you guys learn ^^
    Hey @Zombiekillere I'm dumb in these stuff but I was wondering. If This get detected What to do? :3
    I PLAY DOTO. COME LET'S PLAY DOTO. DOTOBUFF STATZ
    scumbag tutorial:
    How To Reduce Ping Crossfire

  7. #5
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic
    @potatomaniac That's why you should learn C++

  8. #6
    bandi12's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    562
    Reputation
    30
    Thanks
    318
    My Mood
    Yeehaw
    Quote Originally Posted by potatomaniac View Post
    Hey @Zombiekillere I'm dumb in these stuff but I was wondering. If This get detected What to do? :3

    You need to learn C++ in some cases is very easy just change the structure of your hack like while(true) whit while(1) same thing but it was not detected

    The best way is to learn from old detected bases and then make your own don't C+P it i make my own base and i don't update it at least form 4 Xtrap pattches and still undetected the hack's on the forum are detected ... God Luck
     




    MY Latest Aimbot on : Orbital Space (Video Comming Soon)'





     

    - @UltraPGNoob
    - @dicky88smd
    - @giniyat101

  9. #7
    potatomaniac's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    PH
    Posts
    652
    Reputation
    19
    Thanks
    970
    My Mood
    Psychedelic
    Quote Originally Posted by zombiekilere View Post
    @potatomaniac That's why you should learn C++
    Umm.. What Should I Do Where To Start Where To Look And Where To Ask?
    I PLAY DOTO. COME LET'S PLAY DOTO. DOTOBUFF STATZ
    scumbag tutorial:
    How To Reduce Ping Crossfire

  10. #8
    terminatorz's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Backyard of your life
    Posts
    37
    Reputation
    10
    Thanks
    27
    Sorry,i edit something and got an error" i is undeclared identifier",please help!
    fixed
    Last edited by terminatorz; 05-11-2012 at 06:33 AM.

  11. #9
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    Why so hard?
    You can make it much easyer!

  12. #10
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic
    It's for them to learn @Swag

  13. #11
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    Quote Originally Posted by zombiekilere View Post
    It's for them to learn @Swag
    Lol, why so hard xd
    They don't understand asm

  14. #12
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic
    Quote Originally Posted by Swag View Post
    Lol, why so hard xd
    They don't understand asm
    Hmm ..

    That's why they need to know C++ and ASM xD

  15. #13
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    Quote Originally Posted by zombiekilere View Post


    Hmm ..

    That's why they need to know C++ and ASM xD
    Whaha okay, this is the most simple way of asm so good job

  16. The Following User Says Thank You to Swag For This Useful Post:

    Sprite (05-11-2012)

  17. #14
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic
    @Swag thanks ^^

  18. #15
    -[I]fLuX's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    342
    Reputation
    112
    Thanks
    3,923
    My Mood
    Bored
    @zombiekilere you are nice and one positive thing you don't post your hook nice many other people post there hook and then there more leecher without credits
    •Contributor: June, 29th 2013


    My Sources:
    Injector
    Memory Base
    D3D9 Hook
    Hooked Memory Base




  19. The Following 2 Users Say Thank You to -[I]fLuX For This Useful Post:

    Sprite (05-11-2012),zikox (11-04-2013)

Page 1 of 2 12 LastLast

Similar Threads

  1. [REQUEST][TUT]How to make injector for hacks in VB8
    By Pixie in forum Visual Basic Programming
    Replies: 19
    Last Post: 10-10-2009, 05:43 AM
  2. [TUT]how to make neverborns speed hack to work
    By Hagerad in forum Combat Arms Hacks & Cheats
    Replies: 65
    Last Post: 08-23-2009, 10:03 PM
  3. [REQUEST] TUT how to make hacks on crossfire :P
    By havelots56 in forum Hack Requests
    Replies: 3
    Last Post: 07-27-2009, 11:50 PM
  4. Tut-How to make strifes hack work
    By hellaim in forum Combat Arms Hacks & Cheats
    Replies: 32
    Last Post: 09-11-2008, 07:04 PM
  5. {TUT} How to make your own opk hack
    By mandog10 in forum Combat Arms Hacks & Cheats
    Replies: 28
    Last Post: 08-13-2008, 02:44 PM