|
You last visited: Today at 02:25
Advertisement
[HOW TO]NoMenu Hack Coden Inklusive Addies (Daily Update!)
Discussion on [HOW TO]NoMenu Hack Coden Inklusive Addies (Daily Update!) within the WarRock Guides, Tutorials & Modifications forum part of the WarRock category.
04/29/2011, 16:54
|
#226
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by TibixCa
irgendwie is das komisch hab ma extra den source code kopiert und eingefügt das ging komischerweise aber sobald ich andere addy einfüge sind da direkt fehler drin pls hilfe
|
Die defines müssen immer genau gleich heißen. Tausch nur die Zahlen (0x0...) dahinter aus.
|
|
|
04/29/2011, 19:23
|
#227
|
elite*gold: 0
Join Date: Jan 2011
Posts: 423
Received Thanks: 126
|
Ok danke dir habs jetz nach bissl Googeln hab ich jetz noch mehr hacks drinne aber ich finde den wallhack nich kann mir jemanden den source für den wallhack sagen were echt nett danke schonmal im vorraus
|
|
|
05/15/2011, 12:58
|
#228
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by TibixCa
Ok danke dir habs jetz nach bissl Googeln hab ich jetz noch mehr hacks drinne aber ich finde den wallhack nich kann mir jemanden den source für den wallhack sagen were echt nett danke schonmal im vorraus
|
Wallhack ist wieder n bischen anders, dafür bräuchtest du ne Detour.
/Edit
#Updated
Hab mal den Link zum Sammelthread für die Addies unten reingeschrieben.
|
|
|
05/16/2011, 15:41
|
#229
|
elite*gold: 0
Join Date: Dec 2010
Posts: 660
Received Thanks: 99
|
könntest du mir zeigen wie man ein d3d hack erstellt?
|
|
|
05/16/2011, 20:08
|
#230
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by .Dean'
könntest du mir zeigen wie man ein d3d hack erstellt?
|
Is wieder ne andere Sache. Lern erstma C++.
|
|
|
05/17/2011, 19:56
|
#231
|
elite*gold: 0
Join Date: May 2011
Posts: 76
Received Thanks: 37
|
Also .. Das theard is schönn !  Gebe dir auch ein thanks aber ich checks nich  hasst du vllt skype?
|
|
|
05/18/2011, 15:31
|
#232
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Skype: lucaz19971
|
|
|
05/18/2011, 19:32
|
#233
|
elite*gold: 72
Join Date: Jun 2010
Posts: 195
Received Thanks: 38
|
hammer Tut.. hab jetzt meinen ganz eigenen hack :P nur no recoil & esp :PP brauche ned mehr!
DANKE echt geil das tut.. war bestimmt ne menge arbeit
hab n problem mit esp:
was mach ich falsch??
Brauch ich für Esp nen ByPass?? <.<
hier ist mein code:
PHP Code:
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00C7C738
#define ADR_SERVERPOINTER 0x00B770B0
#define D3D_NAME 0x00BB20D4
#define OFS_NORECOIL1 0x00C43C
#define OFS_NORECOIL2 0x00C440
#define OFS_NORECOIL3 0x00C444
#define OFS_5SLOT 0x001021A4
DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//ESP
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + D3D_NAME) = 0;
}
}
//Recoil
{
*(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
}
if(*outgame)
{
ServerHacks();
}
}
Sleep( 30 );
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
|
|
|
05/18/2011, 21:25
|
#234
|
elite*gold: 15
Join Date: Apr 2011
Posts: 1,154
Received Thanks: 267
|
Was mache ich falsch hier nen screen
Bitte eine PN schreiben#
jaja ich habe verwarnung wegen spam -.-
|
|
|
05/19/2011, 15:57
|
#235
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by xyouxn00bx
hammer Tut.. hab jetzt meinen ganz eigenen hack :P nur no recoil & esp :PP brauche ned mehr!
DANKE echt geil das tut.. war bestimmt ne menge arbeit
hab n problem mit esp:
was mach ich falsch??
Brauch ich für Esp nen ByPass?? <.<
hier ist mein code:
PHP Code:
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00C7C738
#define ADR_SERVERPOINTER 0x00B770B0
#define D3D_NAME 0x00BB20D4
#define OFS_NORECOIL1 0x00C43C
#define OFS_NORECOIL2 0x00C440
#define OFS_NORECOIL3 0x00C444
#define OFS_5SLOT 0x001021A4
DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//ESP
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + D3D_NAME) = 0;
}
}
//Recoil
{
*(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
}
if(*outgame)
{
ServerHacks();
}
}
Sleep( 30 );
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
|
ESP wird mit Structs und Detour gemacht, brauchst die Addy nicht, ist ne komplizierte Sache. Ich kriegst selbst im menu nicht hin, also vergiss es (:
|
|
|
05/19/2011, 17:37
|
#236
|
elite*gold: 72
Join Date: Jun 2010
Posts: 195
Received Thanks: 38
|
Quote:
Originally Posted by .xD1997™
ESP wird mit Structs und Detour gemacht, brauchst die Addy nicht, ist ne komplizierte Sache. Ich kriegst selbst im menu nicht hin, also vergiss es (:
|
Und chams? danke für die Antwort
|
|
|
05/20/2011, 14:49
|
#237
|
elite*gold: 0
Join Date: May 2011
Posts: 47
Received Thanks: 15
|
hey
ich hab jetzt no recoil, no spreed, und speed dazugemacht sieht dann so aus :
PHP Code:
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00C7C738
#define ADR_SERVERPOINTER 0x00B770B0
#define OFS_Z 0x00102EC
#define OFS_NFD 0x00102CC
#define OFS_5SLOT 0x001021A4
#define OFS_6SLOT 0x001021A5
#define OFS_7SLOT 0x001021A6
#define OFS_8SLOT 0x001021A7
#define OFS_NORECOIL1 0x00C43C
#define OFS_NORECOIL2 0x00C440
#define OFS_NORECOIL3 0x00C444
#define ADR_NOSPREAD 0x009AE008
#define ADR_SPEED 0x00987858
#define ADR_SPEED 0x00987858
#define ADR_SPEED 0x00987858
DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//Super Jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + OFS_Z) = 2000;
}
}
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -20000;
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
//6 Slot
{
*(long*)(dwSrvrPtr + OFS_6SLOT) = 1;
}
//7 Slot
{
*(long*)(dwSrvrPtr + OFS_7SLOT) = 1;
}
//8 Slot
{
*(long*)(dwSrvrPtr + OFS_8SLOT) = 1;
}
}
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//Super Jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + OFS_Z) = 2000;
}
}
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -20000;
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
//6 Slot
{
*(long*)(dwSrvrPtr + OFS_6SLOT) = 1;
}
//7 Slot
{
*(long*)(dwSrvrPtr + OFS_7SLOT) = 1;
}
//8 Slot
{
*(long*)(dwSrvrPtr + OFS_8SLOT) = 1;
}
}
//Recoil / Spread Stuff
//Recoil
{
*(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
}
//Spread
{
*(float*)ADR_NOSPREAD = 0;
}
}
//Speed Stuff
//Speed Normal
{
if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF)
{
*(float*)ADR_SPEED = 100.0f;
}
}
//Speed x2
{
if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF)
{
*(float*)ADR_SPEED = 150.0f;
}
}
//Speed x3
{
if(GetAsyncKeyState(VK_NUMPAD2) &1<< 0xF)
{
*(float*)ADR_SPEED = 200.0f;
}
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
}
if(*outgame)
{
ServerHacks();
}
}
Sleep( 30 );
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
addys sind auch aktuell jetzt das problem wenn ich f7 drück kommt :
PHP Code:
1>------ Erstellen gestartet: Projekt: flyingdmn nomenu hack, Konfiguration: Debug Win32 ------
1> main2.cpp
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(69): error C2601: 'PlayerHacks': Lokale Funktionsdefinitionen sind unzulässig
1> c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(42): Diese Zeile enthält eine '{', die keine Entsprechung hat
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(87): error C2601: 'ServerHacks': Lokale Funktionsdefinitionen sind unzulässig
1> c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(42): Diese Zeile enthält eine '{', die keine Entsprechung hat
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(117): error C2065: 'dwPlayerPtr': nichtdeklarierter Bezeichner
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(118): error C2065: 'dwPlayerPtr': nichtdeklarierter Bezeichner
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(119): error C2065: 'dwPlayerPtr': nichtdeklarierter Bezeichner
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
Kann mir irg. jemand helfen ??
thx
|
|
|
05/20/2011, 15:37
|
#238
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by xyouxn00bx
Und chams? danke für die Antwort 
|
Chams krieg ich hin, brauchst aber ne DIP Detour für.
Quote:
Originally Posted by flyingdmn2
hey
ich hab jetzt no recoil, no spreed, und speed dazugemacht sieht dann so aus :
PHP Code:
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00C7C738
#define ADR_SERVERPOINTER 0x00B770B0
#define OFS_Z 0x00102EC
#define OFS_NFD 0x00102CC
#define OFS_5SLOT 0x001021A4
#define OFS_6SLOT 0x001021A5
#define OFS_7SLOT 0x001021A6
#define OFS_8SLOT 0x001021A7
#define OFS_NORECOIL1 0x00C43C
#define OFS_NORECOIL2 0x00C440
#define OFS_NORECOIL3 0x00C444
#define ADR_NOSPREAD 0x009AE008
#define ADR_SPEED 0x00987858
#define ADR_SPEED 0x00987858
#define ADR_SPEED 0x00987858
DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//Super Jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + OFS_Z) = 2000;
}
}
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -20000;
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
//6 Slot
{
*(long*)(dwSrvrPtr + OFS_6SLOT) = 1;
}
//7 Slot
{
*(long*)(dwSrvrPtr + OFS_7SLOT) = 1;
}
//8 Slot
{
*(long*)(dwSrvrPtr + OFS_8SLOT) = 1;
}
}
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//Super Jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + OFS_Z) = 2000;
}
}
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -20000;
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
//6 Slot
{
*(long*)(dwSrvrPtr + OFS_6SLOT) = 1;
}
//7 Slot
{
*(long*)(dwSrvrPtr + OFS_7SLOT) = 1;
}
//8 Slot
{
*(long*)(dwSrvrPtr + OFS_8SLOT) = 1;
}
}
//Recoil / Spread Stuff
//Recoil
{
*(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
}
//Spread
{
*(float*)ADR_NOSPREAD = 0;
}
}
//Speed Stuff
//Speed Normal
{
if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF)
{
*(float*)ADR_SPEED = 100.0f;
}
}
//Speed x2
{
if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF)
{
*(float*)ADR_SPEED = 150.0f;
}
}
//Speed x3
{
if(GetAsyncKeyState(VK_NUMPAD2) &1<< 0xF)
{
*(float*)ADR_SPEED = 200.0f;
}
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
}
if(*outgame)
{
ServerHacks();
}
}
Sleep( 30 );
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
addys sind auch aktuell jetzt das problem wenn ich f7 drück kommt :
PHP Code:
1>------ Erstellen gestartet: Projekt: flyingdmn nomenu hack, Konfiguration: Debug Win32 ------
1> main2.cpp
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(69): error C2601: 'PlayerHacks': Lokale Funktionsdefinitionen sind unzulässig
1> c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(42): Diese Zeile enthält eine '{', die keine Entsprechung hat
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(87): error C2601: 'ServerHacks': Lokale Funktionsdefinitionen sind unzulässig
1> c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(42): Diese Zeile enthält eine '{', die keine Entsprechung hat
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(117): error C2065: 'dwPlayerPtr': nichtdeklarierter Bezeichner
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(118): error C2065: 'dwPlayerPtr': nichtdeklarierter Bezeichner
1>c:\users\silas\desktop\no menu hack\flyingdmn nomenu hack\flyingdmn nomenu hack\main2.cpp(119): error C2065: 'dwPlayerPtr': nichtdeklarierter Bezeichner
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
Kann mir irg. jemand helfen ??
thx
|
Also erstmal musst du Speed nur einmal definieren.
Und dann hast du Die void PlayerHacks und ServerHacks 2 oder 3 Mal gemacht o.O
Wo ich nicht verstehe wieso.
Die neuen Funktionen einfach hinter die alten klemmen.
PHP Code:
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//Super Jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + OFS_Z) = 2000;
}
}
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -20000;
}
//Speed
{
if(GetAsyncKeyState(VK_NUMPAD1)) // Speed ON
{
*(float*)(dwPlayerPtr + ADR_SPEED) = 200.0f;
}
if(GetAsyncKeyState(VK_NUMPAD2)) //Speed OFF
{
*(float*)(dwPlayerPtr + ADR_SPEED) = 96.0f;
}
}
}
}
Naja, aber wenn ich mir dein Source angucke, und sehe, dass hier und da mal ne Klammer oder n ; fehlt, und du alles doppelt und dreifach benutzt ohne was zu definieren, denke ich du hast einfach auf blöd alles kopiert.
|
|
|
05/20/2011, 18:46
|
#239
|
elite*gold: 0
Join Date: Apr 2011
Posts: 7
Received Thanks: 1
|
ich kan das nicht kan jemand ein video machen ????
|
|
|
05/20/2011, 23:29
|
#240
|
elite*gold: 0
Join Date: May 2011
Posts: 47
Received Thanks: 15
|
PHP Code:
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00C7C738
#define ADR_SERVERPOINTER 0x00B770B0
#define OFS_NFD 0x00102CC
#define OFS_NORECOIL1 0x00C43C
#define OFS_NORECOIL2 0x00C440
#define OFS_NORECOIL3 0x00C444
#define ADR_NOSPREAD 0x009AE008
#define ADR_SUPERNOSPREAD 0x0098AEE8
#define ADR_SPEED 0x00987858
#define OFS_5SLOT 0x001021A4
#define OFS_6SLOT 0x001021A5
#define OFS_7SLOT 0x001021A6
#define OFS_8SLOT 0x001021A7
DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -90000;
}
//Recoil
{
*(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
}
//No Spread
{
*(float*)(dwPlayerPtr + ADR_NOSPREAD) = 0;
}
//SUPERNOSPREAD
{
*(float*) ADR_SUPERNOSPREAD = 0;
}
//Speed
{
if(GetAsyncKeyState(VK_NUMPAD1)) // Speed ON
{
*(float*)(dwPlayerPtr + ADR_SPEED) = 200.0f;
}
if(GetAsyncKeyState(VK_NUMPAD2)) //Speed OFF
{
*(float*)(dwPlayerPtr + ADR_SPEED) = 96.0f;
}
}
}
}
void ServerHacks()
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
//Slot Stuff
//5 Slot
{
*(long*)(dwSrvrPtr + OFS_5SLOT) = 1;
}
//6 Slot
{
*(long*)(dwSrvrPtr + OFS_6SLOT) = 1;
}
//7 Slot
{
*(long*)(dwSrvrPtr + OFS_7SLOT) = 1;
}
//8 Slot
{
*(long*)(dwSrvrPtr + OFS_8SLOT) = 1;
}
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
}
if(*outgame)
{
ServerHacks();
}
}
Sleep( 30 );
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
Es zeigt bei F7 keinen Fehler an.
Trotzdem funkt no recoil, no spread, super no spread und speed nicht ?
Was mach ich Falsch ?
THX
|
|
|
 |
|
Similar Threads
|
[11.10] ..::flawlezz NoMenu Hack::... [UPDATE]
10/11/2010 - WarRock Hacks, Bots, Cheats & Exploits - 11 Replies
..::flawlezz NoMenu Hack::..
_________________________________________________ __________________
_________________________________________________ ________
_______________________________________________
______________________________________
_______________________________
________________________
________________
___________
_______
|
Jimmy´s NoMenu Hack V.5.7 ##**Works after Update**##
09/17/2010 - WarRock Hacks, Bots, Cheats & Exploits - 26 Replies
So, hab hier mal nen kleinen Hack, da nach dem Update noch nicht so viele Addies zur verfügung stehen, aber der Hack wird noch aktualisiert, und weitere Funktionen werden hinzugefügt.
Die momentanen Funktionen (wird aktualisiert, falls Funktionen hinzugefügt werden):
5. Slot----------------(immer aktiv)
6. Slot----------------(immer aktiv)
7. Slot----------------(immer aktiv)
8. Slot----------------(immer aktiv)
|
Vakitharcama NoMenu Vip [ Turkish Hack ] 08.09.2010 Update
09/08/2010 - WarRock Hacks, Bots, Cheats & Exploits - 2 Replies
Vakitharcama NoMenu Hack
http://img833.imageshack.us/img833/6481/nmm.png
http://img255.imageshack.us/img255/8562/54999136. png
*******************************
Gold Premium Otomatik
|
Vakitharcama NoMenu Vip [ Turkish Hack ] Update 05.09.2010
09/05/2010 - WarRock Hacks, Bots, Cheats & Exploits - 1 Replies
Vakitharcama NoMenu Hack
http://img833.imageshack.us/img833/6481/nmm.png
http://img255.imageshack.us/img255/8562/54999136. png
*******************************
Gold Premium Otomatik
|
Addies nach Update 23.12.2009
12/23/2009 - WarRock Hacks, Bots, Cheats & Exploits - 0 Replies
#define ADR_ALLSERVER=0x004BD95B
#define ADR_HACKSHIELD=0x006A7370
#define ADR_BASEPOINTER=0x00C375E0
# define ADR_WEAPBASE=0x4EBF8A
# define ADR_DEVICEPOINTER=0x41E160
#define ADR_HEALTPOINTER=0x00C38EDC
|
All times are GMT +1. The time now is 02:25.
|
|