Thread: help at hack :D

Results 1 to 4 of 4
  1. #1
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed

    Post help at hack :D

    i created a hack but only glasswalls works can anyone say me what is a mistake
    Code:
    #include <windows.h>
    
    // Adress List //
    
    #define Playerpointer 0x00B174D0
    #define Serverpointer 0x00B11C98
    #define ADR_GLASSWALLS 0x00B10E2C
    #define OFS_NORECOIL1 0xC444
    #define OFS_NORECOIL2 0xC44C
    #define OFS_NORECOIL3 0xC448
    #define OFS_Z 0x10310
    #define ADR_NFD 0x102E8
    
    
    DWORD *ingame= (DWORD*)Playerpointer;
    DWORD *outgame= (DWORD*)Serverpointer;
    
    
    void Glasswalls ()
    {
    if(GetAsyncKeyState(VK_UP) &1)
    {
    *(float*)(ADR_GLASSWALLS) = 1;
    }
    }
    
    void Superjump ()
    {
    if(GetAsyncKeyState(VK_MENU) &1)
    {
    *(float*)(Playerpointer+OFS_Z) = 1000;
    }
    }
    
    void Glasswalls2 ()
    {
    if(GetAsyncKeyState(VK_DOWN) &1)
    {
    *(float*)(ADR_GLASSWALLS) = 0;
    }
    }
    
    void NoRecoil () 
    {
    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
    if(dwPlayerPtr!=0)
    {
    *(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
    }
    }
    
    void NFD ()
    {
     *(int*)ADR_NFD = -25000;
    }
    
    
    void HackThread() 
    {
    for(;; ) 
    {
    if(*ingame) //check if we are ingame.. prevent crashs
    {
    NoRecoil ();
    Glasswalls ();
    Glasswalls2 ();
    NFD ();
    }
    if(*outgame)
    {
    }
    Sleep(100); //prevent for overloading the cpu
    }
    }
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
    
                CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0); //create the hackthread
    	}
    	return TRUE;
    }

  2. #2
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,392
    My Mood
    Stressed
    You got mistake here:
    Code:
    void Superjump ()
    {
    if(GetAsyncKeyState(VK_MENU) &1)
    {
    *(float*)(Playerpointer+OFS_Z) = 1000;
    }
    }
    example
    Code:
    DWORD Player = *(DWORD*)ADR_Player;
    if(Player!=0)
    {
    *(float*)(Player+OFS_NFD) = -9999;
    }
    Good luck.

  3. #3
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    ok ty i did it and works

  4. #4
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,392
    My Mood
    Stressed
    Problem solved @Liz @BACKD00R @Hero @Flengo

Similar Threads

  1. [Help Request] I NEED HELP WITH HACK
    By 67yu67 in forum CrossFire Help
    Replies: 7
    Last Post: 07-13-2011, 02:15 PM
  2. [Help Request] help please hacks dont work
    By solomonjo0 in forum CrossFire Help
    Replies: 9
    Last Post: 07-10-2011, 07:49 PM
  3. [Help Request] I need help with hacking!!!
    By shahjhan21 in forum Combat Arms Help
    Replies: 14
    Last Post: 07-04-2011, 12:00 PM
  4. [Help Request] Help with hacks on laptop
    By dinorex66 in forum CrossFire Help
    Replies: 6
    Last Post: 06-02-2011, 05:32 PM
  5. [Help Request] help with hacks
    By gabalvesilva in forum CrossFire Help
    Replies: 10
    Last Post: 05-17-2011, 03:26 PM