Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 11:22

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Tutorial]Make D3D Warrock Hacks

Discussion on [Tutorial]Make D3D Warrock Hacks within the WarRock forum part of the Shooter category.

Closed Thread
 
Old   #1
 
ρσιѕση's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 351
Received Thanks: 230
[Tutorial]Make D3D Warrock Hacks

Sorry if has been posted or cannot be posted
Mods can move and/or delete this if they want



Today Im Going To Be Showing You..

Dowloads :

DX8 - Summer SDK



D3D -
NOTE : This Will Pick Up A Virus Because It Has A Injection Tool

C++ 6.0 -
----------------------------------------------------------------------------------

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!

#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

#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

#define boxs_Addie1 0x00000

So Now You Have This?

#define ullammo_Addie1 0x000000
#define ullammo_Addie2 0x000000
#define ullammo_Addie3 0x000000

Delete That And Add This
(ur lucky i giving free codes)

#define ullammo_Addie1 0x4FE9E6
#define ullammo_Addie2 0x4FE9F7
#define ullammo_Addie3 0x4FE9FD
#define circles_Addie1 0x895BU

(See How I Did The Hacks)

Like This

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



See simple!

now if you scroll down a little bit you will see

Just Copy This In

bool CH_Unlimammo = false;
bool CH_Boxs = false;

See ( This Means The End Of A Type

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



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!




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:
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:
//----------------------------------------------
//-----------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

//----------------------------------------------
//-----------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

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!

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

m_pFont_INFO->DrawText(15.0f,140.0f,

15.0f,140.0f,

see 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!!!!!!!!!!!!!!

(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:
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:
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 helpd you!

Creditz

Icey For D3D File
KyleOwnzYou For Tut
ρσιѕση is offline  
Thanks
19 Users
Old 10/07/2008, 11:51   #2
 
kenwood's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 223
Received Thanks: 72
copy and past ??
kenwood is offline  
Thanks
1 User
Old 10/07/2008, 13:53   #3
 
elite*gold: 0
Join Date: Mar 2008
Posts: 44
Received Thanks: 21
wieder sowas unnützliches der keiner braucht ... ist zu auffwendig

Ladet dass hier runter


dass verhindert dass eur warrock einen Update macht wie es da schon beschrieben ist (-.- einfach lesen und etwas mitdenken!)

dann den entsprechenden undetected hack z.B.



(ich benutzde den momentan) ja das 1rste programm starten (ohne updates) dann hack starten dann läufts,
zwar etwas ungenau beschrieben aber wenn fragen da sind raus damit

(Ist meiner Meinug nach ist es nicht auffwendig und praktisch)
del8net is offline  
Thanks
3 Users
Old 10/07/2008, 21:57   #4
 
ρσιѕση's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 351
Received Thanks: 230
Quote:
Originally Posted by kenwood View Post
copy and past ??
Quote:
Creditz

Icey For D3D File
KyleOwnzYou For Tut
I did put ^_^
ρσιѕση is offline  
Old 10/07/2008, 22:48   #5
 
elite*gold: 0
Join Date: Oct 2008
Posts: 4
Received Thanks: 0
what is c++6 ?
paginiro is offline  
Old 10/08/2008, 18:44   #6
 
ρσιѕση's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 351
Received Thanks: 230
Quote:
Originally Posted by paginiro View Post
what is c++6 ?
it's a program to use this code and make hacks etc
ρσιѕση is offline  
Old 10/08/2008, 21:24   #7
 
Stylo4T's Avatar
 
elite*gold: 0
Join Date: Dec 2006
Posts: 125
Received Thanks: 30
oh ******* idiots now it will be the same as like with the vb6 hacks...k2 will make them unusable so we cant use them anymore if every stupid idiot knows how to make own hacks >_>
Stylo4T is offline  
Old 10/09/2008, 11:12   #8
 
fireblad3's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 138
Received Thanks: 118
c++ is outdated i think, i just use visual studio 2003 and it's useful
fireblad3 is offline  
Old 11/06/2008, 14:13   #9
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,683
Received Thanks: 506
It wont work for me!
Basser is offline  
Old 11/06/2008, 14:13   #10
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,683
Received Thanks: 506
Code:
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>BSCMAKE: error BK1506 : cannot open file '.\Debug\d3d8dev.sbr': No such file or directory
1>Build log was saved at "file://c:\Documents and Settings\test\Bureaublad\D3D-Empty\Debug\BuildLog.htm"
1>TatniumD3D - 2 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
This is what it says when I build

Code:
1>------ Rebuild All started: Project: TatniumD3D, Configuration: Debug Win32 ------
1>Deleting intermediate and output files for project 'TatniumD3D', configuration 'Debug|Win32'
1>Compiling...
1>d3d8tex.cpp
1>c:\documents and settings\test\bureaublad\d3d-empty\d3d8.h(7) : fatal error C1083: Cannot open include file: 'd3d8.h': No such file or directory
1>d3d8int.cpp
1>c:\documents and settings\test\bureaublad\d3d-empty\d3d8.h(7) : fatal error C1083: Cannot open include file: 'd3d8.h': No such file or directory
1>d3d8dev.cpp
1>c:\documents and settings\test\bureaublad\d3d-empty\d3d8.h(7) : fatal error C1083: Cannot open include file: 'd3d8.h': No such file or directory
1>main.cpp
1>c:\documents and settings\test\bureaublad\d3d-empty\d3d8.h(7) : fatal error C1083: Cannot open include file: 'd3d8.h': No such file or directory
1>d3d8.cpp
1>c:\documents and settings\test\bureaublad\d3d-empty\d3d8.h(7) : fatal error C1083: Cannot open include file: 'd3d8.h': No such file or directory
1>Generating Code...
1>Creating browse information file...
1>Microsoft Browse Information Maintenance Utility Version 9.00.30729
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>BSCMAKE: error BK1506 : cannot open file '.\Debug\main.sbr': No such file or directory
1>Build log was saved at "file://c:\Documents and Settings\test\Bureaublad\D3D-Empty\Debug\BuildLog.htm"
1>TatniumD3D - 6 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
this is what it says when I rebuild
Basser is offline  
Thanks
1 User
Old 11/10/2008, 14:38   #11
 
elite*gold: 0
Join Date: Nov 2008
Posts: 1
Received Thanks: 0
will this work with c++ 2005 ??
impulse154 is offline  
Old 11/10/2008, 22:56   #12
 
elite*gold: 0
Join Date: Jul 2008
Posts: 1
Received Thanks: 0
does visual studio 2003 is better than c++?
assflusher is offline  
Old 11/22/2008, 02:25   #13
 
baddy the PsychoDoc's Avatar
 
elite*gold: 0
Join Date: Nov 2008
Posts: 154
Received Thanks: 31
it's not hard to understand^^
i can d3d but you declared it well.
nice work!
baddy the PsychoDoc is offline  
Thanks
1 User
Old 11/27/2008, 20:57   #14
 
ρσιѕση's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 351
Received Thanks: 230
Quote:
Originally Posted by impulse154 View Post
will this work with c++ 2005 ??
Yes it will
Quote:
Originally Posted by assflusher View Post
does visual studio 2003 is better than c++?
They are the same.
ρσιѕση is offline  
Thanks
1 User
Old 11/28/2008, 11:27   #15
 
schluters's Avatar
 
elite*gold: 0
Join Date: Nov 2008
Posts: 2
Received Thanks: 0
in test...

tank's
schluters is offline  
Closed Thread




All times are GMT +1. The time now is 11:22.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.