Results 1 to 13 of 13
  1. #1
    LegendaryHacker1337's Avatar
    Join Date
    Oct 2007
    Posts
    56
    Reputation
    11
    Thanks
    117

    [Tut] Create Hack + DLL (VC++ 6)

    Build A Hack In C++ 6
    Which call a DLL


    Need:
    • Brain (Not a dumb one !)
    • Basic Knowledge Of C++
    • Visual C++ 6
    Stage:
    • Code a Dll with our hack functions included:
    • 1. Stamina();
    • 2. Teleport(x, y, z);
    • Create a new MFC project with features:
    • 1. Load our Dll
    • 2. Define & Export functions from the Dll
    • 3. Stamina Timer
    • 4. Teleport choosen location
    Get To Work(Dll) !

    • Create a new Win32 Dynamic-Link Library Project, Call it ("LH1337DLL")
    • Choose A simple DLL project
    • Add 3 new file to the project: {Text File, "LH1337DLL.def"} {Source, "functions"} {Header, "functions"}
    • Add this code into functions.cpp:
    Code:
    #include "stdafx.h"
    #include "functions.h"
    
    DWORD dfgiddfg;
    HANDLE dfgdsgdsg;
    
    void OpenMemory()
    {
    HWND frgss = FindWindow(0, "WarRock");
    GetWindowThreadProcessId(frgss, &dfgiddfg);
    dfgdsgdsg = OpenProcess(PROCESS_ALL_ACCESS|PROCESS_VM_OPERATION|PROCESS_VM_READ|PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION, FALSE, dfgiddfg);
    }
    
    
    void Stamina()
    {
        int t=1120403456;
        OpenMemory();
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)0x8B9B04, &t , 4,NULL);
    }
    
    void Teleport(float x, float y, float z)
    {
        long raddyx, raddyy, raddyz; // Real address of coordinates
        long readxyz;                 // Read base address
    
        ReadProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)0x1279280, &readxyz, 4,NULL);
    
        raddyx = readxyz + 0x174;
        raddyy = readxyz + 0x17C;
        raddyz = readxyz + 0x178;
    
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)raddyx, &x , 4,NULL);
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)raddyy, &y , 4,NULL);
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)raddyz, &z , 4,NULL);
    }
    • Add this code into functions.h:
    Code:
    #pragma once
    
    void Stamina();
    void Teleport(float x, float y, float z);
    • Add this code into LH1337DLL.def:
    Code:
    LIBRARY LH1337DLL
    
    EXPORTS
        Stamina
        Teleport
    DLL Finished !!!
    Get To Work(Exe) !

    • Create a MFC Project, call it ("LH1337EXE")
    • Choose, Dialog based.
    • Add 2 button {Refill Stamina, Teleport}
    • Add 3 Edit Box. (X, Y, Z)
    • Make 3 new member variable. {X->m_cox} {Y->m_coy} {Z->m_coz}
    • Add this code in LH1337EXEDlg.cpp at top after all '#include':
    Code:
    HINSTANCE hDLL = NULL;
    
    
    // 1) Teleport
    typedef void (*STAMINA)();
    STAMINA Stamina;
    
    
    // 2) Teleport
    typedef void (*TELEPORT)(float x, float y, float z);
    TELEPORT Teleport;
    • Go to the OnInitDialog() function and add this code:
    Code:
    hDLL = AfxLoadLibrary("LH1337DLL");
    
        if( hDLL == NULL )
        {
            MessageBox("Could not load LH1337DLL.dll");
        }
        else
        {
         Stamina = (STAMINA)GetProcAddress(hDLL, "Stamina");
         Teleport = (TELEPORT)GetProcAddress(hDLL, "Teleport");
        }
    • Now, add a BN_CLICKED event the Refill Stamina button and add this code:
    Code:
    Stamina();
    • Now, add a BN_CLICKED event the Teleport button and add this code:
    Code:
        UpdateData(1);
        Teleport(m_cox, m_coy, m_coz);
    Hack is finished !
    Source Code: Download
    Binary: Download


    [D X T]LegendaryHacker1337[D X T]
    Copyright ® D X T Team




    Last edited by LegendaryHacker1337; 11-03-2007 at 09:04 PM.

  2. The Following 42 Users Say Thank You to LegendaryHacker1337 For This Useful Post:

    2raged (12-18-2007),abooazoz (01-21-2010),baraozin (07-23-2011),blipi (11-04-2007),bohnenbong (11-04-2007),comwhat (04-16-2010),deathgost1 (01-07-2008),DoubleDutch (11-04-2007),ehsanjt98 (05-14-2011),elhikillu (04-03-2012),furqan1 (07-19-2009),g36gunner (11-07-2007),german123 (04-06-2009),GetiZ (07-01-2008),GU.Firehawk (11-15-2007),K2 Nemico (12-15-2007),Kirge (01-26-2008),LameJacob (09-14-2008),majmunpero (05-02-2009),masterboy120 (11-04-2007),mmark5 (01-25-2013),Mushroom (06-14-2008),nepito (03-13-2010),nub_g0t_high (11-04-2007),nukeist_ (11-07-2007),oren007x (12-31-2012),OwlHedger (05-30-2012),pmolikuj11 (08-07-2009),PoWnEdChEaTeR (04-16-2010),Rapitex (03-13-2009),sh00tyn00b (02-19-2008),sheligalo0 (11-04-2007),sidnietje (11-04-2007),Str8Soulja (12-04-2007),suticox (11-12-2007),Taco (11-13-2010),tambre (03-14-2010),tednugent (12-19-2007),wieter20 (01-14-2008),wrasia (11-04-2007),xCONSTANTINEx (10-31-2011),yogilek (11-04-2007)

  3. #2
    josephjboogie3's Avatar
    Join Date
    Aug 2007
    Posts
    233
    Reputation
    7
    Thanks
    52
    yo all da vb6 i download only extract do you have one you can send me or give a working website anyone helpp plzz

  4. #3
    Str8Soulja's Avatar
    Join Date
    Nov 2007
    Posts
    8
    Reputation
    10
    Thanks
    11
    ONCE AGAIN LegendaryHacker1337 aka D X T-Hacker pwns

  5. #4
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    I never noticed this thread was also for C++, try posting in the C++ section for christ sake I have said it like 25 times. -_- but its okay I like saying it.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  6. The Following 2 Users Say Thank You to radnomguywfq3 For This Useful Post:

    german123 (04-06-2009),UltraMan (08-09-2012)

  7. #5
    LegendaryHacker1337's Avatar
    Join Date
    Oct 2007
    Posts
    56
    Reputation
    11
    Thanks
    117
    Quote Originally Posted by josephjboogie3 View Post
    yo all da vb6 i download only extract do you have one you can send me or give a working website anyone helpp plzz

    Why are you posting here ?
    N00B idiot !

  8. #6
    sheligalo0's Avatar
    Join Date
    Sep 2007
    Location
    ENGLAND!
    Posts
    71
    Reputation
    10
    Thanks
    2
    Thanks for this tut man! great help

  9. #7
    wrasia's Avatar
    Join Date
    Jul 2007
    Location
    Netherlands, Nijmegen
    Posts
    454
    Reputation
    10
    Thanks
    86
    Nice bro.

  10. #8
    str1k3r21's Avatar
    Join Date
    Mar 2007
    Posts
    166
    Reputation
    11
    Thanks
    51
    Quote Originally Posted by LegendaryHacker1337 View Post
    Build A Hack In C++ 6
    Which call a DLL


    Need:
    • Brain (Not a dumb one !)
    • Basic Knowledge Of C++
    • Visual C++ 6
    Stage:
    • Code a Dll with our hack functions included:
    • 1. Stamina();
    • 2. Teleport(x, y, z);
    • Create a new MFC project with features:
    • 1. Load our Dll
    • 2. Define & Export functions from the Dll
    • 3. Stamina Timer
    • 4. Teleport choosen location
    Get To Work(Dll) !

    • Create a new Win32 Dynamic-Link Library Project, Call it ("LH1337DLL")
    • Choose A simple DLL project
    • Add 3 new file to the project: {Text File, "LH1337DLL.def"} {Source, "functions"} {Header, "functions"}
    • Add this code into functions.cpp:
    Code:
    #include "stdafx.h"
    #include "functions.h"
    
    DWORD dfgiddfg;
    HANDLE dfgdsgdsg;
    
    void OpenMemory()
    {
    HWND frgss = FindWindow(0, "WarRock");
    GetWindowThreadProcessId(frgss, &dfgiddfg);
    dfgdsgdsg = OpenProcess(PROCESS_ALL_ACCESS|PROCESS_VM_OPERATION|PROCESS_VM_READ|PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION, FALSE, dfgiddfg);
    }
    
    
    void Stamina()
    {
        int t=1120403456;
        OpenMemory();
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)0x8B9B04, &t , 4,NULL);
    }
    
    void Teleport(float x, float y, float z)
    {
        long raddyx, raddyy, raddyz; // Real address of coordinates
        long readxyz;                 // Read base address
    
        ReadProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)0x1279280, &readxyz, 4,NULL);
    
        raddyx = readxyz + 0x174;
        raddyy = readxyz + 0x17C;
        raddyz = readxyz + 0x178;
    
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)raddyx, &x , 4,NULL);
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)raddyy, &y , 4,NULL);
        WriteProcessMemory(dfgdsgdsg,(LPVOID*)(DWORD)raddyz, &z , 4,NULL);
    }
    • Add this code into functions.h:
    Code:
    #pragma once
    
    void Stamina();
    void Teleport(float x, float y, float z);
    • Add this code into LH1337DLL.def:
    Code:
    LIBRARY LH1337DLL
    
    EXPORTS
        Stamina
        Teleport
    DLL Finished !!!
    Get To Work(Exe) !

    • Create a MFC Project, call it ("LH1337EXE")
    • Choose, Dialog based.
    • Add 2 button {Refill Stamina, Teleport}
    • Add 3 Edit Box. (X, Y, Z)
    • Make 3 new member variable. {X->m_cox} {Y->m_coy} {Z->m_coz}
    • Add this code in LH1337EXEDlg.cpp at top after all '#include':
    Code:
    HINSTANCE hDLL = NULL;
    
    
    // 1) Teleport
    typedef void (*STAMINA)();
    STAMINA Stamina;
    
    
    // 2) Teleport
    typedef void (*TELEPORT)(float x, float y, float z);
    TELEPORT Teleport;
    • Go to the OnInitDialog() function and add this code:
    Code:
    hDLL = AfxLoadLibrary("LH1337DLL");
    
        if( hDLL == NULL )
        {
            MessageBox("Could not load LH1337DLL.dll");
        }
        else
        {
         Stamina = (STAMINA)GetProcAddress(hDLL, "Stamina");
         Teleport = (TELEPORT)GetProcAddress(hDLL, "Teleport");
        }
    • Now, add a BN_CLICKED event the Refill Stamina button and add this code:
    Code:
    Stamina();
    • Now, add a BN_CLICKED event the Teleport button and add this code:
    Code:
        UpdateData(1);
        Teleport(m_cox, m_coy, m_coz);
    Hack is finished !
    Source Code: Download
    Binary: Download


    [D X T]LegendaryHacker1337[D X T]
    Copyright ® D X T Team





    Some one move this thread its in the wrong section.

  11. #9
    wrasia's Avatar
    Join Date
    Jul 2007
    Location
    Netherlands, Nijmegen
    Posts
    454
    Reputation
    10
    Thanks
    86
    Quote Originally Posted by str1k3r21 View Post
    Some one move this thread its in the wrong section.
    Why are you quoting one whole post, bitch

  12. #10
    w00t?'s Avatar
    Join Date
    Jul 2007
    Gender
    male
    Posts
    257
    Reputation
    10
    Thanks
    29
    Its in wrong topic nabs..btw nice...i alfredy learned a lot of c++...

  13. #11
    kingxduo's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    @BF3
    Posts
    183
    Reputation
    10
    Thanks
    52
    My Mood
    Aggressive
    nice i will try this..

  14. #12
    Sufoad's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    MPGH
    Posts
    11
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Thanks, I will try this and make something cool

  15. #13
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,393
    My Mood
    Stressed
    This Is Not W0rking In WarRock

Similar Threads

  1. [TUT] Creating a Korean Warrock Clan
    By bigwillybilly in forum WarRock Korea Hacks
    Replies: 38
    Last Post: 08-19-2008, 07:29 PM
  2. VB6 Tut. Warrock Hacks
    By ltkort213 in forum Visual Basic Programming
    Replies: 39
    Last Post: 11-07-2007, 01:05 PM
  3. For all who need helps and n00bs that want start to create hack easily
    By idiot123 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 08-20-2007, 11:05 AM
  4. [Tut]CheatEngine Hacking
    By System79 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 10-14-2006, 01:55 AM
  5. In-Depth Tut. to hacking in War Rock (Conc. to Dave)
    By fl0 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 01-18-2006, 02:49 PM