[HOW TO]NoMenu Hack Coden Inklusive Addies (Daily Update!)

04/29/2011 16:54 .xD1997™#226
Quote:
Originally Posted by TibixCa View Post
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 TibixCa#227
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 .xD1997™#228
Quote:
Originally Posted by TibixCa View Post
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 .Techno'#229
könntest du mir zeigen wie man ein d3d hack erstellt?
05/16/2011 20:08 .xD1997™#230
Quote:
Originally Posted by .Dean' View Post
könntest du mir zeigen wie man ein d3d hack erstellt?
Is wieder ne andere Sache. Lern erstma C++.
05/17/2011 19:56 WarrockGamer16#231
Also .. Das theard is schönn ! :) Gebe dir auch ein thanks aber ich checks nich :( hasst du vllt skype?
05/18/2011 15:31 .xD1997™#232
Skype: lucaz19971
05/18/2011 19:32 xyouxn00bx#233
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:

[Only registered and activated users can see links. Click Here To Register...]

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();
        }
    }
    
Sleep30 );
}
BOOL WINAPI DllMain(HINSTANCE hModuleDWORD dwReasonLPVOID lpvReserved)
{
    if(
dwReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)HackThread000);
    }
    return 
TRUE;

05/18/2011 21:25 Myxir™#234
Was mache ich falsch hier nen screen

[Only registered and activated users can see links. Click Here To Register...]

Bitte eine PN schreiben#

jaja ich habe verwarnung wegen spam -.-
05/19/2011 15:57 .xD1997™#235
Quote:
Originally Posted by xyouxn00bx View Post
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:

[Only registered and activated users can see links. Click Here To Register...]

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();
        }
    }
    
Sleep30 );
}
BOOL WINAPI DllMain(HINSTANCE hModuleDWORD dwReasonLPVOID lpvReserved)
{
    if(
dwReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)HackThread000);
    }
    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 xyouxn00bx#236
Quote:
Originally Posted by .xD1997™ View Post
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 flyingdmn2#237
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();
        }
    }
    
Sleep30 );
}
BOOL WINAPI DllMain(HINSTANCE hModuleDWORD dwReasonLPVOID lpvReserved)
{
    if(
dwReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)HackThread000);
    }
    return 
TRUE;

addys sind auch aktuell jetzt das problem wenn ich f7 drück kommt :
PHP Code:
1>------ Erstellen gestartetProjektflyingdmn nomenu hackKonfigurationDebug 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
========== Erstellen0 erfolgreichFehler bei 10 aktuell0 übersprungen ========== 
Kann mir irg. jemand helfen ??
thx
05/20/2011 15:37 .xD1997™#238
Quote:
Originally Posted by xyouxn00bx View Post
Und chams? danke für die Antwort :)
Chams krieg ich hin, brauchst aber ne DIP Detour für.

Quote:
Originally Posted by flyingdmn2 View Post
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();
        }
    }
    
Sleep30 );
}
BOOL WINAPI DllMain(HINSTANCE hModuleDWORD dwReasonLPVOID lpvReserved)
{
    if(
dwReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)HackThread000);
    }
    return 
TRUE;

addys sind auch aktuell jetzt das problem wenn ich f7 drück kommt :
PHP Code:
1>------ Erstellen gestartetProjektflyingdmn nomenu hackKonfigurationDebug 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
========== Erstellen0 erfolgreichFehler bei 10 aktuell0 ü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 klmn123#239
ich kan das nicht kan jemand ein video machen ????:confused:
05/20/2011 23:29 flyingdmn2#240
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();
        }
    }
    
Sleep30 );
}
BOOL WINAPI DllMain(HINSTANCE hModuleDWORD dwReasonLPVOID lpvReserved)
{
    if(
dwReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)HackThread000);
    }
    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