Results 1 to 6 of 6
  1. #1
    thea168's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    5

    Cool How to use aobscan in c++

    Hi All Hacker Please Help me plese
    I want write code aobscan cheat engine
    In C++ Who Can tell about code
    Thank

  2. #2
    Cambodia's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    (Iron Heart Hacker)
    Posts
    162
    Reputation
    10
    Thanks
    1,820
    My Mood
    Mellow
    Code:
    Make Address , Offset , Value .
    Source : 
    #define Address 0xAddress // Address By Cheat engine
    #define Hex 0xhex Offset // Hex Offset By Cheat Engine
    #define Value 0xvalue // Value ON
    Make Function Called Address , Offset , Value .
    Source :
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    while (1) {
    
    if (GetAsyncKeyState(VK_PRIOR)&1) // Hotkey Function
    *(int*)((*(int*)Address) + Offset) = Value;
    Sleep(100);
    } 
    }
    Make Threads .
    Source .
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    
    Example Completed Code ( Tested anti Wall Xshot C++ )
    
    #include <windows.h>
    
    #include <stdio.h>
    /*================================ Antiwall ================================*/
    #define Antiwall 0x12F5FC
    #define Antiwall2	0x2c0
    #define Antiwall3 66269
    /*================================ Antiwall OFF ================================*/
    #define oAntiwall 0x12F5FC
    #define oAntiwall2	0x2c0
    #define oAntiwall3 66279
    /*================================================= =============================*/
    
    DWORD XpsBlackHat = 0;
    LPTSTR COD = "MAT.exe";
    
    void Patch(void *adr, void *ptr, int size)
    {
    DWORD NewProtection;
    VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,NewProtection, &NewProtection);
    }
    
    
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    while (1) {
    
    if (GetAsyncKeyState(VK_PRIOR)&1) 
    *(int*)((*(int*)Antiwall) + Antiwall2) = Antiwall3;
    Sleep(100);
    if (GetAsyncKeyState(VK_NEXT)&1) 
    *(int*)((*(int*)oAntiwall) + oAntiwall2) = oAntiwall3;
    Sleep(10);
    } 
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if (dwReason == DLL_PROCESS_ATTACH) { 
    MessageBox(0,"ON : Pageup / OFF PageDown","INFORMATION",MB_OK | MB_ICONINFORMATION);
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    }
    return TRUE;
    }
    I will back one day

  3. #3
    thea168's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    5
    Pointer Cannot Find See
    No Way write
    but is use aobscan in ce can use
    but me want use code aobscan ce in c++

  4. #4
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    Moved .

  5. #5
    pc117's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Malaysia,Kuala Lumpur
    Posts
    222
    Reputation
    10
    Thanks
    1,854
    My Mood
    Sick
    Quote Originally Posted by Cambodia View Post
    Code:
    Make Address , Offset , Value .
    Source : 
    #define Address 0xAddress // Address By Cheat engine
    #define Hex 0xhex Offset // Hex Offset By Cheat Engine
    #define Value 0xvalue // Value ON
    Make Function Called Address , Offset , Value .
    Source :
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    while (1) {
    
    if (GetAsyncKeyState(VK_PRIOR)&1) // Hotkey Function
    *(int*)((*(int*)Address) + Offset) = Value;
    Sleep(100);
    } 
    }
    Make Threads .
    Source .
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    
    Example Completed Code ( Tested anti Wall Xshot C++ )
    
    #include <windows.h>
    
    #include <stdio.h>
    /*================================ Antiwall ================================*/
    #define Antiwall 0x12F5FC
    #define Antiwall2	0x2c0
    #define Antiwall3 66269
    /*================================ Antiwall OFF ================================*/
    #define oAntiwall 0x12F5FC
    #define oAntiwall2	0x2c0
    #define oAntiwall3 66279
    /*================================================= =============================*/
    
    DWORD XpsBlackHat = 0;
    LPTSTR COD = "MAT.exe";
    
    void Patch(void *adr, void *ptr, int size)
    {
    DWORD NewProtection;
    VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,NewProtection, &NewProtection);
    }
    
    
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    while (1) {
    
    if (GetAsyncKeyState(VK_PRIOR)&1) 
    *(int*)((*(int*)Antiwall) + Antiwall2) = Antiwall3;
    Sleep(100);
    if (GetAsyncKeyState(VK_NEXT)&1) 
    *(int*)((*(int*)oAntiwall) + oAntiwall2) = oAntiwall3;
    Sleep(10);
    } 
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if (dwReason == DLL_PROCESS_ATTACH) { 
    MessageBox(0,"ON : Pageup / OFF PageDown","INFORMATION",MB_OK | MB_ICONINFORMATION);
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    }
    return TRUE;
    }

    Ok Tq From Share

  6. #6
    thea168's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    5
    IS MY CODE
    [ENABLE]
    aobscan(TEST, E8 2D FF FF FF 73 4D FC FF 43)
    TEST:
    db 0F 25 2C FF FF FF 70 98 90 34

    [DISABLE]

    is value can not find address or pointer cuz address chang very time

Similar Threads

  1. [Help] how can i use AOBSCAN on CE
    By st34tlh in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 1
    Last Post: 04-23-2013, 10:29 PM
  2. How to Use Tsearch
    By wardo1926 in forum Hack Requests
    Replies: 5
    Last Post: 12-18-2007, 09:24 PM
  3. warrock addresses and how to use
    By ragman1234 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 04-15-2007, 12:38 PM
  4. Help! how to use ardamax keylogg
    By gmgundamx7 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 02-28-2007, 04:43 PM
  5. How To Use A Render By Phate
    By Paolo1993 in forum Tutorials
    Replies: 0
    Last Post: 01-27-2006, 08:03 PM