Results 1 to 6 of 6
  1. #1
    rickj1996's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Location
    asdf
    Posts
    7
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed

    Smile How to make a dll hack - LEACHED!!!

    Things needed
    1. Visuial C++ 6.0 (pm me if you need this)
    2. Addie finder ( Nearons should work for you)
    3. SDK Summer 2004 Download here https://www.microsof*****m/downloads/d...displaylang=en
    4. Injector (Any hack you have downloaded comes with one.)


    Step 1

    Open Visual C++
    Press File-->New Select Win32 Dynamic-Link Library and enter a project Name
    Select An Empty DLL Project
    Press File-->New Select C++ Source File Give it a name

    Now you are ready to get started

    Copy and Paste this code Start Below Here:

    /*
    Project : Public HACK Tutorial
    Author : KVDIRECT AKA:Sniper8ce
    */
    #include <stdio.h>
    #include <windows.h>

    //Address go Here
    #define Playerpointer 0x00CB11C8 //these are current
    #define Serverpointer 0x00B39BE0 // as of 8-11-09
    #define OFS_X 0x0000023C // on Warrock int
    #define OFS_Y 0x00000244 // change them when needed
    #define OFS_Z 0x00000240
    #define ADR_FAST_HEALTH 0x00AF5404
    #define ADR_FAST_AMMO 0x00AF5400
    #define ADR_FAST_FLAG 0x00AF5408
    #define ADR_FAST_REPAIR 0x00AF540C
    #define ADR_SPEED 0x0099ADA8
    #define ADR_SPAWN_1 0x00C48320
    #define ADR_SPAWN_2 0x00CACF2C
    #define ADR_BOUNDS_1 0x00C5DF9C
    #define ADR_BOUNDS_2 0x00C5DFA0
    #define ADR_SCOPE 0x00AF53F6
    #define ADR_Spread 0x00AF5458


    HANDLE Warrock;
    DWORD *ingame= (DWORD*)Playerpointer;
    DWORD *outgame= (DWORD*)Serverpointer;

    //Hack Codes Go Here
    //Fast All
    void Fastall()
    {
    *(float*) ADR_FAST_HEALTH = 5000000;
    *(float*) ADR_FAST_AMMO = 5000000;
    *(float*) ADR_FAST_FLAG = 50000;
    *(float*) ADR_FAST_REPAIR = 5000000;
    }
    //Speed
    void speed() // insert key, speed on
    {
    if(GetAsyncKeyState(VK_INSERT) &1)
    {
    *(float*) ADR_SPEED = 1500;
    }
    }
    void speedoff() // delete key, speed normal
    {
    if(GetAsyncKeyState(VK_DELETE) &1)
    {
    *(float*) ADR_SPEED = 100;
    }
    }
    //No Spawn Wait
    void nowait()
    {
    *(float*) ADR_SPAWN_1 = 0;
    *(float*) ADR_SPAWN_2 = 0;
    }
    //No Boundries
    void nobound()
    {
    //if (nobound)
    {
    long t=0;
    unsigned long Protection;
    VirtualProtect((void*)ADR_BOUNDS_1, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_BOUNDS_1, &t , sizeof(t));
    VirtualProtect((void*)ADR_BOUNDS_1, sizeof(t), Protection, 0);
    VirtualProtect((void*)ADR_BOUNDS_2, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_BOUNDS_2, &t , sizeof(t));
    VirtualProtect((void*)ADR_BOUNDS_2, sizeof(t), Protection, 0);
    }
    }
    //Scope
    void scope()
    {
    if(GetAsyncKeyState(VK_RBUTTON))
    {
    int t=1;
    unsigned long Protection;
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_SCOPE, &t , sizeof(t));
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), Protection, 0);
    }
    else
    {
    int t=0;
    unsigned long Protection;
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_SCOPE, &t , sizeof(t));
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), Protection, 0);
    }
    }
    //No Spread
    void Spread()
    {
    *(float*) ADR_Spread = 0;
    }

    //Any other hacks you decide to add go above here
    //Hack are put into the game here
    void snip()
    {
    for(;; )
    {
    if(*ingame) //check if we are ingame.. prevent crashs
    {
    Fastall();
    speed(); // player hacks go here
    speedoff();
    scope();
    }
    if(*outgame)
    {
    Spread();
    nowait(); //server hacks go here
    }
    Sleep(200); //prevent for overloading the cpu
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "YOUR NAME HERE", "Credits", MB_OK); // Put your
    //name where Your Name Here is but leave the ""
    MessageBoxA(NULL, "Sniper8ce's Base Code", "Credits", MB_OK); // Do not
    // edit this
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)snip, 0, 0, 0); //create
    // the hackthread
    }
    return TRUE;
    }


    Stop Copy Above Here!!!!!!!!!!!!
    Now you can goto Build-->Compile "?.cpp"
    If no errors then Build-->Build "?.dll"
    Then goto your project folder and click the debug folder. In there you should fine the DLL file. Copy and Paste it in the same folder as your injector. Make sure they have the same name.
    Exp- test.exe(injector) test.dll(DLL File)

    Look over the hacks and build off of them this will get you started but its a very simple hack. I will check this post every day and try to get back to your questions ASAP.

    Remember if you use NOT my base code then you can atleast do 1 thing for me.
    1. Press the Thanks Button

    Have fun with this and keep in touch with any updates to the hack you have added. Im interested to see how far you can get with it.

  2. The Following User Says Thank You to rickj1996 For This Useful Post:

    red564 (02-20-2010)

  3. #2
    Tom's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Location
    in my gf's pants
    Posts
    1,861
    Reputation
    37
    Thanks
    594
    My Mood
    Cool
    hmm Let me try lol.

  4. #3
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    hmm i have seen this one before but it seems that this contains a bit more and why do you want show boxes :| seems vage because it lowers down warrock and when u return you might be dead (rather to chose a beep or something like that :3)

    i tried this thing for CA but ca will run only it gave me a error at the background when i closed CA
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  5. #4
    ltantman's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    2
    My Mood
    Bashful
    Sorry, but what game is this a base hack code for??

    or is it just general?
    Last edited by why06; 01-19-2010 at 07:07 AM.

  6. #5
    Snape's Avatar
    Join Date
    May 2008
    Gender
    male
    Location
    Hogwarts
    Posts
    13,893
    Reputation
    855
    Thanks
    3,033
    Dont double post man.



  7. #6
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by helger View Post
    Dont double post man.
    I can handle that. posting just to tell him that is all most just as bad and off-topic.

    @ltantman: this is specifically for Warrock.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

Similar Threads

  1. [Tutorial] How to create a DLL hack ---> for you ( Enjoy Niggas make a hack and put a credit )
    By Dark Side in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 08-08-2011, 05:20 PM
  2. [Solved] How to make a .dll file hack?
    By micro961 in forum CrossFire Help
    Replies: 13
    Last Post: 06-11-2011, 06:23 AM
  3. [RELEASE]how to make a /dll hack undetected .
    By DRAKE` in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 85
    Last Post: 10-09-2010, 07:15 PM
  4. [HELP]How to make a dll hack
    By fadee in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 05-09-2010, 01:31 AM
  5. How To Make A DLL Hack For WarRock
    By kakec161 in forum C++/C Programming
    Replies: 3
    Last Post: 04-01-2010, 08:40 PM