Page 1 of 4 123 ... LastLast
Results 1 to 15 of 47
  1. #1
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy

    [Tutorial]C++ Warrock D3D Hack [Tutorial]

    Hey Mpgh Users!

    Today i wil show u how do u build a D3D Hack (Menu) !


    Dowloads :
    DX8 - Summer SDK
    Download details: DirectX 9.0 SDK Update - (Summer 2004)


    D3D : Look Down i uploaded it


    Virus-Scan : Mpgh Source File 837 - D3D.rar - Jottis Malwarescanner


    What Will This Do?

    Make A Hack For Warrock

    Includes

    *How To Make A Menu
    *How To Get Hacks
    *How To Set Hotkeys
    *How To Add Strings
    *How To Make A Key Do A Function
    *How To Make The Hack Do Something
    *How To Change The Name Of Your Hack
    *How To Make Your Own .Exe File
    *How To Make Your Own .Dll File


    ------------------------------------------------------

    PLEASE READ THIS CAREFULLY!
    PLEASE READ THIS CAREFULLY!
    PLEASE READ THIS CAREFULLY!
    PLEASE READ THIS CAREFULLY!
    PLEASE READ THIS CAREFULLY!





    How To Make It :


    Once they are installed Take the EmptyD3D folder out the zip file and place it on your desktop Now open C++6 and then Go to file/Open Workspace
    Then direct it to the EmptyD3D and you will see a file named
    "TatniumD3D.dsw" double click it!

    This is now all the D3D code! looks mad huh? Now we need to set up the includes and lib files for teh DX9-summer so go to TOOLS/OPTIONS then click on Directories.

    Look were it says : Show directories for:
    you will see that Include files is selected.
    Now under the last include which should be the Visual studion Include
    Click under it and 3 dots will appear, click the 3 dots to open anouther window to find your DX8-SummerFolder!.

    Once you found your directx-8 Summer folder click on the Include folder
    and then click on OK

    Now to add the Library folder!
    Click the arrow under the Show Directories For and click on Library Files


    Now do the same as above! click under the last included file untill the dots appeare then navigate to your DX8-summer folder and then double click on LIB folder and then OK, Then Ok again and the box should close leaveing you looking upon the code!

    Now i'm just going to explain the basic because i have also writen help inside the D3D! the text will be green! but i will whizz over it in here to make things more understandable! I'm not great at D3D.


    Ok so scroll to the top and look for this part of the code that says this

    Were Are Tryying To Find This!


    Code:
    #define ullammo_Addie1 0x000000
    #define ullammo_Addie2 0x000000
    #define ullammo_Addie3 0x000000
    #define boxs_Addie1 0x00000
    You See This? This Is Hack Addys So For..

    EXAMPLE

    If We Did Have A Hack Working It Would Look Like This
    Code:
    #define ullammo_Addie1 0x785 (We Would Delete The 0'S After 0x(Delete)
    #define ullammo_Addie2 0x000000
    #define ullammo_Addie3 0x000000
    #define boxs_Addie1 0x00000
    So Delete

    Code:
    #define boxs_Addie1 0x00000
    So Now You Have This?
    Code:
    #define ullammo_Addie1 0x000000
    #define ullammo_Addie2 0x000000
    #define ullammo_Addie3 0x000000
    Delete That And Add This

    ( Replace the AddieS with the Currently Addy)
    Code:
    #define ullammo_Addie1 0x4FE9F7 
    #define ullammo_Addie2 0x4FE9F7
    #define ullammo_Addie3 0x4FE9FD
    #define circles_Addie1 0x895BU
    ( Replace the AddieS with the Currently Addy)

    (See How I Did The Hacks)

    Like This


    Code:
    0x0000 (No Code / Hack)
    0x895BU (Hack / Code)

    See simple!

    now if you scroll down a little bit you will see

    Just Copy This In

    Code:
    bool CH_Unlimammo = false;
    bool CH_Boxs = false;
    See ( This Means The End Of A Type

    Code:
    CH (Is A Menu)
    Sorry I Hope U No Confused..

    Just Helping You In C++ As We Go Along


    Now Following Along..

    Now if you scroll a little more you will see this




    Code:
    int highlight[2] = {1,0};
    Now at this point we need to add to the 2 and the 1,0 so now we have added a 3rd hack we change this to look like this!




    Code:
    int highlight[3] = {1,0,0}
    ;See! make sure you add a ,0 every time also! But i'm sure you dont add these when adding hacks such as Stamina as that is a Offset! but i'll explain this at a later date!



    Now under the last bit of code we were looking you will see this!

    Code:
    Code:
    char unlimammostring[20] = {NULL};

    Ok to carry on we need to scroll down abit to find the green text saying
    ADD HACKS HERE!



    Like This

    Now this can be somewhat confuseing for beginners but once you start adding to the list the easyer it becomes!

    Ok so here is the code that we have for the hacks at the moment!

    Code:
    Code:
    //----------------------------------------------
    //-----------ADD HACKS HERE---------------------
    {
    if( CH_Unlimammo ) // UNLIM AMMO!
    {
    D3D_NOPING( ( void* )ullammo_Addie1, 3);
    D3D_NOPING( ( void* )ullammo_Addie2, 3);
    D3D_NOPING( ( void* )ullammo_Addie3, 3);
    }
    {
    if( CH_Boxs )//BOXS
    {
    D3D_NOPING( ( void* )boxs_Addie1, 1);
    }
    
    //Add hack above here
    {
    return m_pD3Ddev->BeginScene();
    }
    }
    }
    //Add anouther } with every hack!
    Now See Boxs?

    We Delete Boxs Since We Have No Code It Wont Work So Do This
    Code:
    //----------------------------------------------
    //-----------ADD HACKS HERE---------------------
    {
    if( CH_Unlimammo ) // UNLIM AMMO!
    {
    D3D_NOPING( ( void* )ullammo_Addie1, 3);
    D3D_NOPING( ( void* )ullammo_Addie2, 3);
    D3D_NOPING( ( void* )ullammo_Addie3, 3);
    }
    }
    }
    //Add anouther } with every hack!


    // (In Green) Means Thats It A Cmment It Will Not Affect The Program


    Now On Going...

    Have you noticed the "- You add this in as well!"
    Ok so you have now added your hack code so now to move on!

    Scroll a bit down and you will see this next bit of code that we need to add to!


    Just As This

    Code:
    printf(unlimammostring, "%s", (CH_Unlimammo ? "Unlim ammo ON" : "Unlim ammo OFF"))
    And Againm Delete Boxs


    Moving On...

    Now..
    This is for the menu, i wounder if you guess what for?
    Also if you look up a bit from this bit of code you will see that you can rename the hack, see if you can find it?

    Ok now below the last bit of code we added yo will see this!


    Code:
    if(highlight[3]==1)
    m_pFont_INFO->DrawText(15.0f, 140.0f, txtRed, Unlim ammostring);
    else
    m_pFont_INFO->DrawText(15.0f,140.0f, txtGreen, Unlim ammostring);
    See String This Is Like A Must Do

    And See

    Code:
    m_pFont_INFO->DrawText(15.0f,140.0f,
    
    15.0f,140.0f,
    see
    Code:
    140
    ?
    says we added another hack it will be

    150 for 2 String So If We Added Another Hacker It Would Look Like This

    DO NOT ADD THIS IN!!!!!!!!!!!!!!
    DO NOT ADD THIS IN!!!!!!!!!!!!!!
    DO NOT ADD THIS IN!!!!!!!!!!!!!!
    DO NOT ADD THIS IN!!!!!!!!!!!!!!
    DO NOT ADD THIS IN!!!!!!!!!!!!!!


    Code:
    (LOOK ) AT THE 4..
    if(highlight[4==1) (IT WILL CHANGE TO 150 BECAUSE ITS NEXT ONE OTHER IF WE DID 140 IT WOULD BE BUNCHED
    m_pFont_INFO->DrawText(15.0f, 150f, txtRed,
    else
    m_pFont_INFO->DrawText(15.0f,140.0f, txtGreen,
    Moving on..


    also notice that i changed the "2" to a "3" you must change this number with each hack so the next hack would be "4" Also notcie that i have changed the numbers "130" to "140" (these numbers go up in TENS) if you forget to change this then the text for the hacks in the menu will sit on each other and you wont be able to see the text propper

    So now this part will look like this!

    ok see this?


    Code:
    Code:
    if(highlight[1] == 1 && (GetAsyncKeyState(VK_RIGHT)&1))
    CH_Unlimammo = !CH_Unlimammo;
    
    if(highlight[2] == 1 && (GetAsyncKeyState(VK_RIGHT)&1))
    CH_Boxs = !CH_Boxs;
    
    if(highlight[2] == 1 && (GetAsyncKeyState(VK_RIGHT)&1))
    CH_Boxs = !CH_Boxs;
    delete the boxes so it looks liek this

    Code:
    Code:
    if(highlight[1] == 1 && (GetAsyncKeyState(VK_RIGHT)&1))
    CH_Unlimammo = !CH_Unlimammo;

    And thats it for codeing.........

    Lol quite a lot to take in when your starting off but the more you do the quicker you get use to it! A few things could be done to touch it all up but im intrested in getting you started!

    Ok now click on Build and then Rebuild All!
    Hopefully if you done it all correctly you will get no errors!

    Now click build again and then click on Batch Build then RebuildAll.
    Now goto the Empty_D3D folder and then Release
    You will see that there is a file that says "TatniumD3D" this will make the hack load into warrock so double click it and it should say

    "wchang.com D3D press End for end the injection" Click OK
    Now open warrock and login! you will see your D3D menu on the left of the screen!

    Use the UP and DOWN keys to navigate up and down the list and hit the RIGHT arrow key to select it ON or OFF.

    Hope this helped you!

    If you need help then add a reply i will help u

    Code:
    Creditz:Taylan,ρσιѕση
    Dont forgott to press the Thanks Button


    [Sorry for my bad english]
    Last edited by taylan; 06-25-2010 at 09:07 PM.

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  2. The Following 77 Users Say Thank You to taylan For This Useful Post:

    *GMPRO* (06-16-2015),-IrOn-FrAnZ- (08-29-2010),1lyaSweepy (03-17-2013),amer944 (02-01-2016),anejpalfi (11-03-2010),angahkechik11 (06-08-2014),armour199915 (07-30-2015),ayay456 (07-13-2014),basble (08-12-2010),BurnStaff (09-06-2014),byl1n1 (05-23-2013),c0.0kie (10-29-2010),c0ntr0x (01-03-2012),classic8888 (05-09-2020),danica001 (08-06-2010),dem0nking (06-27-2010),dime11 (12-01-2010),Dong'Rickz (09-26-2014),doofbla (09-18-2010),dtb2001 (04-03-2013),duckmatt5573 (04-30-2014),Dyhard (09-09-2014),Dylan36sly (10-24-2010),eichel (07-10-2010),erikhenri (04-26-2012),forzxm (04-12-2014),gengrant4 (08-15-2010),genji596 (01-06-2015),ggerm211 (09-23-2010),Ghost304 (08-02-2013),GHPH™ (02-27-2014),Grab (08-24-2012),grenade321 (10-05-2014),hardcorejunk96 (09-24-2010),iAmAwsome123 (08-19-2010),iWiizz (09-01-2012),JANNIEK (08-18-2010),jayden1212 (09-08-2010),joshpe1 (01-18-2011),karam98 (10-12-2010),killzonebunny (08-29-2010),kziemann (08-17-2010),lefagroll (01-09-2013),loco9191 (11-15-2010),lolsurferlol (09-30-2010),luizimloko (05-06-2012),madeven (11-20-2012),Mast3r32 (12-28-2013),Maurice104 (08-08-2010),mercedesjul (10-20-2010),meto619 (05-15-2012),Mr0ziak (07-20-2010),mrinvictus (04-28-2012),mullerrice (08-13-2010),Neaglezzz (05-06-2012),NicoFighter (10-04-2010),parskie (03-05-2014),pasu1992 (02-19-2014),paul36bone (07-09-2013),reaper (06-25-2010),Rockma (07-04-2011),Roflcopter420 (09-10-2010),Ryuzaki™ (06-15-2012),selman (09-03-2011),Sepi24 (07-18-2010),shc111 (05-03-2012),Terell. (07-18-2010),tiel2012 (03-02-2014),tomtom83 (10-10-2010),Turamba (08-09-2014),umbraga01 (03-02-2011),venenako (05-16-2015),xDominique (11-01-2010),XpeinX (06-29-2010),yy1467749847 (08-30-2014),~GodLike~ (07-01-2010),™~jpagz~™ (02-07-2014)

  3. #2
    reaper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    The Deep South
    Posts
    5,247
    Reputation
    58
    Thanks
    1,077
    My Mood
    Relaxed
    You are really tempting me to start coding

    Have you made any hacks yet?

    Thanks again

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

    ggerm211 (09-23-2010),tiel2012 (03-02-2014)

  5. #3
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    virustotal wont work need help the site dont opens

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  6. The Following 3 Users Say Thank You to taylan For This Useful Post:

    cavalo21 (09-20-2010),enverheckir (12-11-2011),ggerm211 (09-23-2010)

  7. #4
    reaper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    The Deep South
    Posts
    5,247
    Reputation
    58
    Thanks
    1,077
    My Mood
    Relaxed
    Yea it's been offline all day

    I have been using Virscan a lot lately, it is very good too

  8. The Following User Says Thank You to reaper For This Useful Post:

    ggerm211 (09-23-2010)

  9. #5
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    kk thanks ! i will make the virus scan soon ! if that okay

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

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

    ggerm211 (09-23-2010)

  11. #6
    Julma Henri's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,528
    Reputation
    205
    Thanks
    775
    My Mood
    In Love
    Is it illegal to make hack ?
    Help me get donator.



    Want to become part of Editor Force? Click the tag below and apply now !

  12. The Following User Says Thank You to Julma Henri For This Useful Post:

    ggerm211 (09-23-2010)

  13. #7
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    NoobsAreOwnage:
    no ! BUT it works .

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  14. The Following User Says Thank You to taylan For This Useful Post:

    ggerm211 (09-23-2010)

  15. #8
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,291
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    Quote Originally Posted by NoobsAreOwnage View Post
    Is it illegal to make hack ?
    yep its illegal xD i know

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

    ggerm211 (09-23-2010)

  17. #9
    PB&J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Hacklandia
    Posts
    34
    Reputation
    9
    Thanks
    4
    My Mood
    Doh
    Quote Originally Posted by ikke0147 View Post
    yep its illegal xD i know
    No its not illegal >.>
    There is no law in the US that says "you cannot hack a Online Video Game" ... Get your facts straights please ^_^
    Last edited by PB&J; 06-27-2010 at 07:21 AM.

  18. The Following User Says Thank You to PB&J For This Useful Post:

    ggerm211 (09-23-2010)

  19. #10
    reaper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    The Deep South
    Posts
    5,247
    Reputation
    58
    Thanks
    1,077
    My Mood
    Relaxed
    Quote Originally Posted by PB&J View Post
    There is no law in the US that says "you cannot hack a Online Video Game"
    There is in Korea

  20. The Following User Says Thank You to reaper For This Useful Post:

    ggerm211 (09-23-2010)

  21. #11
    Pagn's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    WarRock and C++ section
    Posts
    1,505
    Reputation
    32
    Thanks
    302
    My Mood
    Relaxed
    OMG!!! it is not hes tutorial

    PROVE: { Well is it a ban, if i post a site right here?? }

    (just want to show the tutorial he took it from)
    Last edited by Pagn; 06-27-2010 at 11:49 AM.

  22. #12
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,291
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy

    Arrow

    Quote Originally Posted by kingpady View Post
    OMG!!! it is not hes tutorial

    PROVE: { Well is it a ban, if i post a site right here?? }

    (just want to show the tutorial he took it from)
    easy man, its better then nothing..

  23. The Following User Says Thank You to AeroMan For This Useful Post:

    taylan (07-03-2010)

  24. #13
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    I am not a leecher . i want to give credits but that is unless because in google is this tutorials evrywhere to find. i created this thread because it is one of the basic tutorials of warrock hacking .
    Last edited by taylan; 07-03-2010 at 05:10 AM.

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  25. #14
    TøXiN's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    7
    My Mood
    Amazed

    Exclamation hm

    I don't quite understand, So i just load this DLL into an injector (such as perx) and launch warrock. Well it gets an error and it says it needs to close. Help?

  26. #15
    Sepi24's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    My Mood
    Bashful
    too bad it doesnt work...

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [TUT] WarRock D3D Hack With Screens!
    By AeroMan in forum Programming Tutorials
    Replies: 15
    Last Post: 10-19-2010, 10:17 AM
  2. [Release] New Warrock D3D Hack
    By IHelper in forum WarRock - International Hacks
    Replies: 21
    Last Post: 10-13-2009, 09:09 AM
  3. Warrock D3d Hack Feb 09
    By leonard208 in forum WarRock - International Hacks
    Replies: 40
    Last Post: 03-27-2009, 05:10 PM
  4. New WarRock D3D Hack -
    By Dr.Dre in forum WarRock - International Hacks
    Replies: 34
    Last Post: 03-10-2009, 01:45 AM
  5. [Release] WarRock D3D Hack ]3d[l33t ]v3r[
    By bohnenbong in forum WarRock - International Hacks
    Replies: 15
    Last Post: 12-28-2008, 02:56 AM