|
You last visited: Today at 03:37
Advertisement
D3D Hack erstellen Hilfe
Discussion on D3D Hack erstellen Hilfe within the WarRock forum part of the Shooter category.
01/01/2011, 22:03
|
#1
|
elite*gold: 0
Join Date: May 2010
Posts: 423
Received Thanks: 285
|
D3D Hack erstellen Hilfe
Hallo kann mir pls jemand beibringen wie man D3D hack erstellen kann pls wird auch natürlich in Credits geschrieben!
add mich in skype:kilgut
oder PN me PLS
|
|
|
01/01/2011, 22:11
|
#2
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Bau dir erstma selbst ne Base auf...
|
|
|
01/01/2011, 22:11
|
#3
|
elite*gold: 0
Join Date: Jun 2010
Posts: 802
Received Thanks: 220
|
also ehen
1. kauf dir ein gutes Buch über C++ zB C++ von A bis Z
2.Versuch die Sprache zu verstehen
3.bau ne base
4. fang an zu coden ;D
ps reported
|
|
|
01/02/2011, 00:04
|
#4
|
elite*gold: 0
Join Date: May 2010
Posts: 423
Received Thanks: 285
|
was ist ein base?
|
|
|
01/02/2011, 00:06
|
#5
|
elite*gold: 100
Join Date: Dec 2007
Posts: 12,393
Received Thanks: 5,363
|
Quote:
Originally Posted by kilgut12
was ist ein base?
|
Wenn du das schon nicht weisst dann solltest du mit no menue anfangen.
oder garnicht weiter drüber nachdenken
|
|
|
01/02/2011, 00:49
|
#6
|
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
|
Ich habe eine base aber ich schaffe es nciht D3D funktionen einzubauen *-_-
also sie crashen nicht etc sie funktionieren einfach nur nciht
|
|
|
01/02/2011, 00:52
|
#7
|
elite*gold: 0
Join Date: Oct 2009
Posts: 14,456
Received Thanks: 7,846
|
Quote:
Originally Posted by joki4444
Ich habe eine base aber ich schaffe es nciht D3D funktionen einzubauen *-_-
also sie crashen nicht etc sie funktionieren einfach nur nciht
|
Schon ne D3D Hook gemacht?
Btw, welche VC++ Version haste? haste Dx SDK?
|
|
|
01/02/2011, 00:58
|
#8
|
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
|
also ich kann den hack in warrock starten und auch ausführe 
aber ich check das mit den D3D funktionen nicht !!
z.B Chams habe cih eig den richtigen code geschrieben und wenn cihs anmachen will passiert ncihts
|
|
|
01/02/2011, 01:02
|
#9
|
elite*gold: 0
Join Date: Oct 2009
Posts: 14,456
Received Thanks: 7,846
|
Quote:
Originally Posted by joki4444
also ich kann den hack in warrock starten und auch ausführe 
aber ich check das mit den D3D funktionen nicht !!
z.B Chams habe cih eig den richtigen code geschrieben und wenn cihs anmachen will passiert ncihts
|
Du musst die D3D hooken, und somit die draw Funktion freischalten..
|
|
|
01/02/2011, 01:06
|
#10
|
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
|
naja du meinst so;
Quote:
HRESULT WINAPI myDrawIndexedPrimitive(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE Type, INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount)
{
if(pDevice->GetStreamSource(0,&StreamData,&OffsetInBytes,&m_S tride) == D3D_OK)
{
StreamData->Release();
}
DWORD dwOldZEnable = D3DZB_TRUE;
if(cHacks.cD3D.Chams)
{
if( (m_Stride == 36) || (m_Stride == 32) || (m_Stride == 44))
{
pDevice->SetRenderState(D3DRS_ZENABLE, 0);
if(cCheat.cD3D.ColorC1==0) pDevice->SetTexture(0, White);
if(cCheat.cD3D.ColorC1==1) pDevice->SetTexture(0, Red);
if(cCheat.cD3D.ColorC1==2) pDevice->SetTexture(0, Green);
if(cCheat.cD3D.ColorC1==3) pDevice->SetTexture(0, Blue);
if(cCheat.cD3D.ColorC1==4) pDevice->SetTexture(0, Black);
if(cCheat.cD3D.ColorC1==5) pDevice->SetTexture(0, Purple);
if(cCheat.cD3D.ColorC1==6) pDevice->SetTexture(0, Grey);
if(cCheat.cD3D.ColorC1==7) pDevice->SetTexture(0, Yellow);
if(cCheat.cD3D.ColorC1==8) pDevice->SetTexture(0, Orange);
pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
pDevice->SetRenderState(D3DRS_ZENABLE, 1);
if(cCheat.cD3D.ColorC2==0) pDevice->SetTexture(0, White);
if(cCheat.cD3D.ColorC2==1) pDevice->SetTexture(0, Red);
if(cCheat.cD3D.ColorC2==2) pDevice->SetTexture(0, Green);
if(cCheat.cD3D.ColorC2==3) pDevice->SetTexture(0, Blue);
if(cCheat.cD3D.ColorC2==4) pDevice->SetTexture(0, Black);
if(cCheat.cD3D.ColorC2==5) pDevice->SetTexture(0, Purple);
if(cCheat.cD3D.ColorC2==6) pDevice->SetTexture(0, Grey);
if(cCheat.cD3D.ColorC2==7) pDevice->SetTexture(0, Yellow);
if(cCheat.cD3D.ColorC2==8) pDevice->SetTexture(0, Orange);
}
}
if(cHacks.cD3D.CH_Wallhack)
{
if( (m_Stride == 36) || (m_Stride == 32) || (m_Stride == 44) )
{
pDevice->SetRenderState(D3DRS_ZENABLE, 0);
pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
pDevice->SetRenderState(D3DRS_ZENABLE, 1);
}
}
if(cHacks.cD3D.ColorWand)
{
if( (m_Stride == 40) )
{
if(cCheat.cD3D.ColorWand==1) pDevice->SetTexture(0, White);
if(cCheat.cD3D.ColorWand==2) pDevice->SetTexture(0, Red);
if(cCheat.cD3D.ColorWand==3) pDevice->SetTexture(0, Green);
if(cCheat.cD3D.ColorWand==4) pDevice->SetTexture(0, Blue);
if(cCheat.cD3D.ColorWand==5) pDevice->SetTexture(0, Black);
if(cCheat.cD3D.ColorWand==6) pDevice->SetTexture(0, Purple);
if(cCheat.cD3D.ColorWand==7) pDevice->SetTexture(0, Grey);
if(cCheat.cD3D.ColorWand==8) pDevice->SetTexture(0, Yellow);
if(cCheat.cD3D.ColorWand==9) pDevice->SetTexture(0, Orange);
}
}
return pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
}
|
die hab cih von der KarakaBase
|
|
|
01/02/2011, 01:15
|
#11
|
elite*gold: 0
Join Date: Oct 2009
Posts: 14,456
Received Thanks: 7,846
|
Quote:
Originally Posted by joki4444
naja du meinst so;
die hab cih von der KarakaBase
|
Das ist wie der Name sagt, auch "nur" eine Base...
Man kann das nicht einfach c&p'n. Eigeninitiative ist angesagt!
|
|
|
01/02/2011, 01:17
|
#12
|
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
|

die base ansich ist nciht von karakas
hab ne eigene mit der von church gemacht aber in der war ja nix von D3D-hooks vorhanden und in karakas schon
|
|
|
01/02/2011, 01:21
|
#13
|
elite*gold: 0
Join Date: Oct 2009
Posts: 14,456
Received Thanks: 7,846
|
Quote:
Originally Posted by joki4444

die base ansich ist nciht von karakas
hab ne eigene mit der von church gemacht aber in der war ja nix von D3D-hooks vorhanden und in karakas schon
|
Achso, sag das doch gleich ;>.
Wie gesagt, D3D EndScene ist angesagt ;D
|
|
|
01/02/2011, 01:23
|
#14
|
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
|
mir wurde gesag das enscene nicht mehr geht aber mit rehook sollte es tgehen
|
|
|
01/02/2011, 01:39
|
#15
|
elite*gold: 0
Join Date: May 2010
Posts: 423
Received Thanks: 285
|
Quote:
naja du meinst so;
Zitat:
HRESULT WINAPI myDrawIndexedPrimitive(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE Type, INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount)
{
if(pDevice->GetStreamSource(0,&StreamData,&OffsetInBytes,&m _S tride) == D3D_OK)
{
StreamData->Release();
}
DWORD dwOldZEnable = D3DZB_TRUE;
if(cHacks.cD3D.Chams)
{
if( (m_Stride == 36) || (m_Stride == 32) || (m_Stride == 44))
{
pDevice->SetRenderState(D3DRS_ZENABLE, 0);
if(cCheat.cD3D.ColorC1==0) pDevice->SetTexture(0, White);
if(cCheat.cD3D.ColorC1==1) pDevice->SetTexture(0, Red);
if(cCheat.cD3D.ColorC1==2) pDevice->SetTexture(0, Green);
if(cCheat.cD3D.ColorC1==3) pDevice->SetTexture(0, Blue);
if(cCheat.cD3D.ColorC1==4) pDevice->SetTexture(0, Black);
if(cCheat.cD3D.ColorC1==5) pDevice->SetTexture(0, Purple);
if(cCheat.cD3D.ColorC1==6) pDevice->SetTexture(0, Grey);
if(cCheat.cD3D.ColorC1==7) pDevice->SetTexture(0, Yellow);
if(cCheat.cD3D.ColorC1==8) pDevice->SetTexture(0, Orange);
pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
pDevice->SetRenderState(D3DRS_ZENABLE, 1);
if(cCheat.cD3D.ColorC2==0) pDevice->SetTexture(0, White);
if(cCheat.cD3D.ColorC2==1) pDevice->SetTexture(0, Red);
if(cCheat.cD3D.ColorC2==2) pDevice->SetTexture(0, Green);
if(cCheat.cD3D.ColorC2==3) pDevice->SetTexture(0, Blue);
if(cCheat.cD3D.ColorC2==4) pDevice->SetTexture(0, Black);
if(cCheat.cD3D.ColorC2==5) pDevice->SetTexture(0, Purple);
if(cCheat.cD3D.ColorC2==6) pDevice->SetTexture(0, Grey);
if(cCheat.cD3D.ColorC2==7) pDevice->SetTexture(0, Yellow);
if(cCheat.cD3D.ColorC2==8) pDevice->SetTexture(0, Orange);
}
}
if(cHacks.cD3D.CH_Wallhack)
{
if( (m_Stride == 36) || (m_Stride == 32) || (m_Stride == 44) )
{
pDevice->SetRenderState(D3DRS_ZENABLE, 0);
pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
pDevice->SetRenderState(D3DRS_ZENABLE, 1);
}
}
if(cHacks.cD3D.ColorWand)
{
if( (m_Stride == 40) )
{
if(cCheat.cD3D.ColorWand==1) pDevice->SetTexture(0, White);
if(cCheat.cD3D.ColorWand==2) pDevice->SetTexture(0, Red);
if(cCheat.cD3D.ColorWand==3) pDevice->SetTexture(0, Green);
if(cCheat.cD3D.ColorWand==4) pDevice->SetTexture(0, Blue);
if(cCheat.cD3D.ColorWand==5) pDevice->SetTexture(0, Black);
if(cCheat.cD3D.ColorWand==6) pDevice->SetTexture(0, Purple);
if(cCheat.cD3D.ColorWand==7) pDevice->SetTexture(0, Grey);
if(cCheat.cD3D.ColorWand==8) pDevice->SetTexture(0, Yellow);
if(cCheat.cD3D.ColorWand==9) pDevice->SetTexture(0, Orange);
}
}
return pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
}
die hab cih von der KarakaBase
|
sind es menü source vom ganzen hack?
|
|
|
 |
|
Similar Threads
|
Hilfe/warrock hack erstellen
12/05/2010 - WarRock - 5 Replies
hay leute ich wollte euch mal fragen
wie ich ein warrock hack erstellen kann
und etwas finde ich auch unlogisch,
woher kann mann wissen wenn man den hack erstellt dass keine viren drauf sind? ty vorraus
gebe jeden thx der es verdient hat :D
|
Brauche Hilfe Ein Hack Zu Erstellen :(
12/02/2010 - Main - 2 Replies
hi ich wollte ma ein (Hack) für S4 League Erstellen Aber Ich Weiß net wie man das alles macht =(.
Pls ich brauche Hilfe Für die anleitung Hack für S4 League Erstellen
Schreibt da Unten^^:awesome:
|
[hilfe]wegen S4league hack erstellen[/hilfe]
06/12/2010 - S4 League - 24 Replies
Hallo,
Ich wollt eienen hack erstellen von bannana crafts anleitung habe auch alles also adressen,KodaCode und AutoIt
jetzt kommt das große ABER
1. wenn ich es starte dann kommt error
2.wo füge ich den eigentlich die adressen ein
wer mir da hilft der kriegt soviele thx bis ich sterbe ò.O ne scherz ich kriegt schon paar Thx hier mal mein Code bis jetzt
|
All times are GMT +1. The time now is 03:39.
|
|