Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 23:53

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

Advertisement



[Help] Menu-Hack erstellen

Discussion on [Help] Menu-Hack erstellen within the WarRock forum part of the Shooter category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
[Help] Menu-Hack erstellen

Ich habe ein kleines problem :-D9
Ich möchte einen D3D hack coden aber leider fehlt mir
ein wichtiger teil
also hat einer vielleciht eine neuere DrawBox für mich ???
sonst würde der hack funzen :-D
oder könnt ihr ihn überarbeiten

Hier die source von der DrawBox:

Problem ist jetzt nur das cih D3D9 benutze und i wie funzt das da nciht.

void DrawBox(IDirect3DDevice8 *pD3Ddev, int x, int y, int w, int h, D3DCOLOR col)
{
struct QuadVertex {
float x,y,z,rhw;
DWORD dwColor;
};
IDirect3DVertexBuffer8 *pVertexBuffer = NULL;
QuadVertex qV[4];
BYTE *pVertexData = NULL;

if (pD3Ddev->CreateVertexBuffer((4*sizeof(QuadVertex)),(D3DUSA GE_WRITEONLY|D3DUSAGE_DYNAMIC),(D3DFVF_XYZRHW|D3DF VF_DIFFUSE),D3DPOOL_DEFAULT,&pVertexBuffer)<0) return;

pD3Ddev->SetRenderState(D3DRS_ZENABLE , FALSE);
pD3Ddev->SetRenderState(D3DRS_CULLMODE, D3DCULL_NONE);
pD3Ddev->SetRenderState(D3DRS_LIGHTING, FALSE);

pVertexBuffer->Lock(0,0,&pVertexData,D3DLOCK_NOSYSLOCK | D3DLOCK_DISCARD);
if(pVertexData)
{
qV[0].dwColor = qV[1].dwColor = qV[2].dwColor = qV[3].dwColor = col;
qV[0].z = qV[1].z = qV[2].z = qV[3].z = 0.0f;
qV[0].rhw = qV[1].rhw = qV[2].rhw = qV[3].rhw = 0.0f;

qV[0].x = (float)x;
qV[0].y = (float)(y + h);
qV[1].x = (float)x;
qV[1].y = (float)y;
qV[2].x = (float)(x + w);
qV[2].y = (float)(y + h);
qV[3].x = (float)(x + w);
qV[3].y = (float)y;

memcpy(pVertexData,qV,sizeof(QuadVertex)*4);
pVertexBuffer->Unlock();
pVertexData = NULL;

pD3Ddev->SetStreamSource(0,pVertexBuffer, sizeof(QuadVertex));
pD3Ddev->SetVertexShader( D3DFVF_XYZRHW | D3DFVF_DIFFUSE );
pD3Ddev->DrawPrimitive( D3DPT_TRIANGLESTRIP, 0, 2 );
}
if (pVertexBuffer) {
pVertexBuffer->Release();
pVertexBuffer=NULL;
}
pD3Ddev->SetRenderState(D3DRS_LIGHTING, true);
}
joki4444 is offline  
Old 12/20/2010, 16:09   #2
 
elite*gold: 61
Join Date: Aug 2010
Posts: 4,538
Received Thanks: 1,359
Kommt in den Sticky

#closerequest .
xh0m3r1n0x' is offline  
Old 12/20/2010, 16:11   #3
 
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
welcher sticky??
joki4444 is offline  
Old 12/20/2010, 16:13   #4
 
elite*gold: 61
Join Date: Aug 2010
Posts: 4,538
Received Thanks: 1,359
Quote:
Originally Posted by joki4444 View Post
welcher sticky??
In
xh0m3r1n0x' is offline  
Old 12/20/2010, 16:20   #5
 
elite*gold: 0
Join Date: Oct 2010
Posts: 1,202
Received Thanks: 1,137
Hmm also ich brauche auch hilfe ,bei meinen NoMenü hack :s

Habe No spread +No bounds + No Recoil eingefügt aber wenn ich hack starte geht es nicht.

.dll wird gemacht fehler frei aber es klappt nicht :s

Wer kann mir helfen?
.Shinnichi is offline  
Old 12/20/2010, 16:29   #6
 
elite*gold: 61
Join Date: Aug 2010
Posts: 4,538
Received Thanks: 1,359
Quote:
Originally Posted by xBlaybayx View Post
Hmm also ich brauche auch hilfe ,bei meinen NoMenü hack :s

Habe No spread +No bounds + No Recoil eingefügt aber wenn ich hack starte geht es nicht.

.dll wird gemacht fehler frei aber es klappt nicht :s

Wer kann mir helfen?
Auch in den Sticky Vllt. veraltete Addys ?
xh0m3r1n0x' is offline  
Old 12/20/2010, 16:33   #7
 
elite*gold: 0
Join Date: Oct 2010
Posts: 1,202
Received Thanks: 1,137
Kann nicht sein,und da kommen nur rouce rein :S
.Shinnichi is offline  
Old 12/20/2010, 16:34   #8
 
c.L.O.N.e's Avatar
 
elite*gold: 4
Join Date: Nov 2010
Posts: 439
Received Thanks: 58
wer hilfe braucht added mich enifach ins skype : niklaszack

dein source ist völlig falsch
c.L.O.N.e is offline  
Thanks
1 User
Old 12/20/2010, 16:37   #9
 
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
Hast du No
Nobounds und no spreat player oder server site??
joki4444 is offline  
Old 12/20/2010, 19:05   #10


 
_Headsh0t_'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 13,882
Received Thanks: 9,861
#closed
_Headsh0t_ is offline  
Closed Thread


Similar Threads Similar Threads
[How to] No Menu WarRock Superjump + NFD hack erstellen [C ++ ]
09/12/2011 - WarRock Guides, Tutorials & Modifications - 15 Replies
Hi, In dem zeige ich euch wie ihr einen WarRock hack in c++ erstellt, dabei handelt sich um einen Superjump hack + nfd ( na fall damage ) hack! Als erstes brauchen wir visual c++ 2008 Dann ein neues Project oben links wählen Bild: win32 > win32 project > OK
[Help] Menu-Hack erstellen
12/14/2010 - WarRock - 9 Replies
Hi, es hört sich vielleciht einwenig dumm an aber pls könnt ihr mir ne Kleine source eines menu hack geben?? muss nciht groß sein ich will nur endlich mal coden lernen also werde ich mit der source verscuhen die funktionen zu verstehen. Ich will nichts wirklich großes nur so das man halt Player hacks, waffen ahcks, und server hacks öffnen kann und bei jedem ein hack dirn ist



All times are GMT +1. The time now is 23:53.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.