Results 1 to 5 of 5
  1. #1
    xxxxdivinity's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    223
    Reputation
    3
    Thanks
    11
    My Mood
    Amused

    Making a weapon hack ---

    Hey, I hope this doesn't seem like I want to be spoonfed.
    I was hoping somebody would be willing to show me the main idea.
    I've installed Microsoft Visual C++ Express 2010 And have a compiler.
    I reviewed the base thread, I got lost after he started talking about Cshell.dll , I don't know where to get it. How to make it. etc. If anyon ecould give me a basic rundown of this please PM me. . Thanks for any advice.

  2. #2
    Hero's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    memes
    Posts
    40,134
    Reputation
    4764
    Thanks
    9,674
    -Moved to the hack source code section.
    Hopefully you'll get better answers here.

    CShell.dll is located in the crossfire folder. I'm pretty sure also you need to unpack it, then look for addies, coding, etc.
    Hopefully @Philong and @Royku can give you a better rundown...
    [] [] [] [][]

    Editor from 06•14•2011 • 2014
    Donator since 09•16•2011
    Minion from 10•10•2011 • 01•06•2011
    Minion+ from 01•06•2012 • 08•08•2012
    Moderator from 08•08•2012 • 10•06•2012
    Global Moderator from 10•06•2012 • 12•05•2017
    Staff Administrator from 12•05•2017 • 05•01•2019
    Trusted Member since 07•13•2019
    Global Moderator since 09•11•2020




  3. The Following User Says Thank You to Hero For This Useful Post:

    xxxxdivinity (01-02-2012)

  4. #3
    xxxxdivinity's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    223
    Reputation
    3
    Thanks
    11
    My Mood
    Amused
    Thanks!

  5. #4
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    You can get the addys here:

    https://www.mpgh.net/forum/242-crossf...new-patch.html

    Then you need to make a hack base. What the base does, is gets the handle to CShell.dll (the dll with all the weapons etc in it) and dereferences a few pointers and changes values around.

    Here is an example base:

    Code:
    #include <windows.h>
    
    #define WeaponMgr 0xA68F80
    
    void hacks()
    {
        DWORD CShell = NULL;
        while(CShell==NULL)
        {
            CShell = (DWORD)GetModuleHandleA("CShell.dll");
            Sleep(100);
        }
        while(1)
        {
           //do the main stuff here
            Sleep(100);
        }
    }
    
    BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
    {
        if(fdwReason==DLL_PROCESS_ATTACH)
        {
            DisableThreadLibraryCalls(hinstDLL);
            CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)hacks, NULL, NULL, NULL);
            //U might wanna put a messagebox here
        }
        return TRUE; // succesful
    }
    You need to have a reasonable understanding of C++, so if you don't, I suggest you do some tutorials or something to teach you before trying to make hacks.

    Thank me if I helped
    Last edited by _corn_; 01-03-2012 at 05:19 AM.

  6. #5
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    CShell.dll is in CF folder it is the memory of CF so basically u just change the memory and put it in a form of a dll..!
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

Similar Threads

  1. How to make a weapon hack? [Solution]
    By WeaponHacker in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 11-18-2011, 10:52 AM
  2. Coud someone please make weapon hack for me?
    By klemen123 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 10-28-2008, 01:09 PM
  3. Can anyone teach me to make Weapon hacked accounts
    By HaterSauce in forum WarRock - International Hacks
    Replies: 18
    Last Post: 05-27-2008, 03:32 PM
  4. Dave can u make ryl2 money or weapon hack?
    By 3005523 in forum Hack Requests
    Replies: 2
    Last Post: 05-09-2007, 04:15 PM
  5. I wanna make weapon hack but need help
    By allard123 in forum WarRock - International Hacks
    Replies: 13
    Last Post: 02-19-2007, 08:19 PM