Results 1 to 5 of 5
  1. #1
    hackzerz's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    $T4Lk much?
    Posts
    1,450
    Reputation
    18
    Thanks
    159
    My Mood
    Sneaky

    how to find the LTC

    how do i find the ltClient
    Code:
    #include <stdio.h>
    #include <windows.h>
    
    // Pointers
    #define Playerpointer 0xC62388
    
    // Offsets
    #define OFS_NORECOIL1 0x1C
    #define OFS_NORECOIL2 0x20
    #define OFS_NORECOIL3 0x24
    
    HANDLE Warrock;
    DWORD *ingame= (DWORD*)Playerpointer;
    DWORD *outgame= (DWORD*)Serverpointer;
    
    // No Recoil
    void NoRecoil()
    {
    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
    }
    }
    
    //Any other hacks you decide to add go above here
    //Hack are put into the game here
    void snip()
    {
    for(;; ) 
    {
    if(*ingame) // Player hacks go here.
    {
    NoRecoil();
    }
    if(*outgame) // Server hacks all go in this section.
    {
    
    }
    Sleep(200); // Prevent overload.
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "DLL was injected successfully.", "SeptFicelle", MB_OK); // Success message.
    MessageBoxA(NULL, "Thanks for using my source code. =)", "SeptFicelle", MB_OK); // Thanks message.
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)snip, 0, 0, 0); // Initiate the hack thread.
    }
    return TRUE;
    }
    Last edited by hackzerz; 01-30-2011 at 04:23 AM.

  2. #2
    FG Tim's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Isla Kant'o Pangi!
    Posts
    219
    Reputation
    34
    Thanks
    97
    My Mood
    Relaxed
    What's a LTC ?

  3. #3
    HAxCodER™'s Avatar
    Join Date
    Jan 2011
    Gender
    female
    Location
    Fucking Your Mom
    Posts
    2,450
    Reputation
    -2
    Thanks
    552
    My Mood
    Yeehaw
    too many error LOL

  4. #4
    hackzerz's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    $T4Lk much?
    Posts
    1,450
    Reputation
    18
    Thanks
    159
    My Mood
    Sneaky
    idk what an ltc is :P

  5. #5
    Gh0sts~l1f3's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    146
    Reputation
    16
    Thanks
    74
    i Think he Mean PlayerPointer Will if u Need Learn how to Find it on Ida so look at Warrock Source Section ther is Already tut about that