Anmeldungsdatum: Dez 2011
Beiträge: 97
Benutzer-Bewertung:
|
Guten Abend! Ich habe mich an Chams versucht und sitze nun in der Zwickmühle. Mein Code (nur die stellen die wirklich wichtig sind. DLL main etc ist glaub ich nicht Interessant^^):
CPP Code: //selbstredend: typedef HRESULT (WINAPI* tDrawIndexedPrimitive)(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE PrimType,INT BaseVertexIndex,UINT MinVertexIndex,UINT NumVertices,UINT startIndex,UINT primCount); LPDIRECT3DTEXTURE9 texRed; LPDIRECT3DTEXTURE9 texGreen; #define Terrorist (NumVertices == 3210 && primCount == 4503) || (NumVertices == 2292 && primCount == 3015) || (NumVertices == 1488 && primCount == 1819) || (NumVertices == 835 && primCount == 899) || (NumVertices == 554 && primCount == 509) || (NumVertices == 408 && primCount == 344) void CreateTexture(LPDIRECT3DDEVICE9 pDevice, LPCVOID color, UINT ColorSize, LPDIRECT3DTEXTURE9 *texture){ D3DXCreateTextureFromFileInMemory(pDevice, color, ColorSize, texture); } //----------------------------------------------------------------- //Das ist meine Funktion die die Chams "anzeigen" soll void UseChams(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE PrimType, int BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount){ if(Terrorist){ pDevice->SetRenderState(D3DRS_ZENABLE, false); pDevice->SetTexture(0, texGreen); pDevice->DrawIndexedPrimitive(PrimType, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount); pDevice->SetRenderState(D3DRS_ZENABLE, true); } /*if(CounterTerrorist){ pDevice->SetRenderState(D3DRS_ZENABLE, false); pDevice->SetTexture(0, texRed); pDevice->DrawIndexedPrimitive(PrimType, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount); pDevice->SetRenderState(D3DRS_ZENABLE, true); } */ } //----------------------------------------------------------------- HRESULT WINAPI hkDrawIndexedPrimitive(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE PrimType, INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount){ UseChams(pDevice, PrimType, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount); return pDrawIndexedPrimitive(pDevice, PrimType, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount); } void FunktionHook(){ HMODULE hModule = NULL; while(!hModule){ hModule = GetModuleHandleA("d3d9.dll"); Sleep(100); } DWORD* VTableStart = 0; DWORD dwEndScene = 0; DWORD dwDrawIndexedPrimitive = 0; DWORD FoundByGordon = dwFindPattern((DWORD)hModule, 0x128000, (PBYTE)"\xC7\x06\x00\x00\x00\x00\x89\x86\x00\x00\x00\x00\x89\x86", "xx????xx????xx"); memcpy(&VTableStart, (void*)(FoundByGordon+2), 4); dwDrawIndexedPrimitive = (DWORD)VTableStart[82]; dwEndScene = (DWORD)VTableStart[42]; pEndScene = (tEndScene)DetourFunc((PBYTE)dwEndScene,(PBYTE)hkEndScene, 5); pDrawIndexedPrimitive = (tDrawIndexedPrimitive)DetourFunc((PBYTE)dwDrawIndexedPrimitive,(PBYTE)hkDrawIndexedPrimitive, 5); }
In der Sekunde, in der ich es in CSS injecte, stürzt das spiel ab (hl2.exe funktioniert nicht mehr... usw.) Wenn jemand mal rüber sehen könnte und sagen könnte was ich falsch gemacht habe wäre ich ihm sehr verbunden^^.
Mit freundlichen Grüßen vedel
|