Results 1 to 14 of 14
  1. #1
    TheGTAHeroes's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    San Andreas
    Posts
    110
    Reputation
    10
    Thanks
    69
    My Mood
    Buzzed

    Error Codes For Simple Memory Hacks

    When I Creating A Simple Memory Hack To Release, By Using The New Addresslog that Released and i got errors, When I'm Finished To Create A Hack And I Clicked Build And It Got Some errors i will give you the codes that i created,

     
    Code:
    #inculd<windows.h>
    
    #define PlayerStruct         0x41930C
    #define WallHack             0x6D49E4
    
    #define WeaponStruct         0xCE54B0
    #define ReloadAnimRatio      0xBE4
    
    #define BasicPlayerInfo      0xC7E380
    #define C4DefuseTime         0x80
    
    
    DWORD WINAPI Hacks (LPVOID)
    {
    bool WallHack = true; 
    bool ReloadAnimRatio = true;
    bool C4DefuseTime = true;
    
    while(1)
    {
    DWORD CSHell = (DWORD) GetModuleHandleA ('CShell.dll");
    DWORD PlayerStruct = *(DWORD*) (CShell + PlayerStruct);
    DWORD WeaponStruct = *(DWORD*) (CShell + WeaponStruct);
    DWORD BasicPlayerInfo = *(DWORD*) (CShell + BasicPlayerInfo);
    
    
    if (wallhack)
    {
    if (PlayerStruct)
    {
    for (int i=0; i<445; i++)
    {
    if ((*(DWORD*) ((*(DWORD*) (CShell+PlayerStruct)) + (4*i))) != NULL)
    *(float*) ((*(DWORD*) ((*(DWORD*) (CShell+PlayerStruct)) + (4*i))) + WallHack) = 100;
    }
    }
    }
    
    
    if (reload)
    {
    if (WeaponStruct)
    {
    for (int i=0; i<445; i++)
    {
    if ((*(DWORD*) ((*(DWORD*) (CShell+WeaponStruct)) + (5*i))) != NULL)
    *(float*) ((*(DWORD*) ((*(DWORD*) (CShell+WeaponStruct)) + (5*i))) + NoReload) = 100;
    }
    }
    }
    
    
    if (C4DefuseTime)
    {
    if (BasicPlayerInfo))
    {
    for (int i=0; i<445; i++)
    {
    if ((*(DWORD*) ((*(DWORD*) (CShell+BasicPlayerInfo))) + (5*i))) != NULL)
    *(float*) ((*(DWORD*) ((*(DWORD*) (CShell+BasicPlayerInfo))) + (5*i))) + FastDefuse) = 100;
    }
    }
    }
    
    Sleep(100);
    }
    }
    
    bool Ready2Hook()
    {
    if(GetModuleHandleA("CShell.dll")   != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
    return 1;
    return 0;
    }
    
    DWORD WINAPI Wait(LPVOID)
    {
    while(!Ready2Hook()) Sleep(200);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
    return 0;
    }
     
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
             
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    
    
    {
     MessageBox(NULL, L"MPGH.NET", L"Created By TheGTAHeroes", MB_OK;
         return FALSE;
    }


    Maybe The Codes Is Wrong

    Expert Coders Help Me
     

    [IMG]https://i1202.photobucke*****m/albums/bb361/partiiee/cheaters04.gif[/IMG]


  2. #2
    UTAN's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    46
    @TheGTAHeroes
    try this
     
    #include <windows.h>


    #define WeaponStruct 0xCE54B0
    #define ReloadAnimRatio 0xBE4

    DWORD WINAPI Hacks ()
    {
    bool WallHack = true;
    bool ReloadAnimRatio = true;

    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD dwWeapon = *(DWORD*) (CShell + WeaponStruct);

    while(1)
    {
    if (wallhack)
    {
    memcpy((VOID*)0x6D49E4, "\x00\x00\x00\x00\x00\x00", 6);
    }
    else
    {
    memcpy((VOID*)0x6D49E4, "\x01\x01\x01\x01\x01\x01", 6);
    }

    if (reload)
    {
    if (dwWeapon)
    {
    for (int i=0; i<672; i++)
    {
    if ((*(DWORD*) ((*(DWORD*) (CShell+WeaponStruct)) + (4*i))) != NULL)
    *(float*) ((*(DWORD*) ((*(DWORD*) (CShell+WeaponStruct)) + (4*i))) + NoReload) = 10;
    }
    }
    }
    }

    bool Ready2Hook()
    {
    if(GetModuleHandleA("CShell.dll") != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
    return 1;
    return 0;
    }

    DWORD WINAPI Wait(LPVOID)
    {
    while(!Ready2Hook()) Sleep(200);
    Hacks();
    return 0;
    }

    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if( dwReason == DLL_PROCESS_ATTACH )
    {
    MessageBoxA(0, "utan", "Injected", 0);
    CreateThread(NULL, 0,(LPTHREAD_START_ROUTINE)Wait, NULL, 0, NULL);
    }
    return 1;
    }
    Last edited by UTAN; 10-01-2012 at 04:51 AM.

  3. The Following User Says Thank You to UTAN For This Useful Post:

    TheGTAHeroes (10-01-2012)

  4. #3
    TheGTAHeroes's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    San Andreas
    Posts
    110
    Reputation
    10
    Thanks
    69
    My Mood
    Buzzed
    Thanks UTAN I will Add You In Credits ^_^

    ---------- Post added at 05:05 AM ---------- Previous post was at 04:57 AM ----------

    UTAN i got this Error "c:\users\owtel\documents\visual studio 2010\projects\private\private\private.cpp(63): fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "StdAfx.h"' to your source?" Can You Help Me?

    ---------- Post added at 05:09 AM ---------- Previous post was at 05:05 AM ----------

    I Dont How to Fix That, That Error is Started When I Buy New PC "Gaming PC"
     

    [IMG]https://i1202.photobucke*****m/albums/bb361/partiiee/cheaters04.gif[/IMG]


  5. #4
    UTAN's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    46
    create a empty project

  6. #5
    dominick13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    0
    My Mood
    Bitchy
    sama mo ako sa credits

  7. #6
    TheGTAHeroes's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    San Andreas
    Posts
    110
    Reputation
    10
    Thanks
    69
    My Mood
    Buzzed
    Quote Originally Posted by UTAN View Post
    create a empty project
    How Do I Save It In DLL file?


    ---------- Post added at 07:23 AM ---------- Previous post was at 07:21 AM ----------

    I Download The Microsoft Visual C++ 2010
     

    [IMG]https://i1202.photobucke*****m/albums/bb361/partiiee/cheaters04.gif[/IMG]


  8. #7
    blacksquad's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    blacksquad's injector.exe
    Posts
    147
    Reputation
    10
    Thanks
    1,090
    My Mood
    Cynical
    Quote Originally Posted by TheGTAHeroes View Post


    How Do I Save It In DLL file?


    ---------- Post added at 07:23 AM ---------- Previous post was at 07:21 AM ----------

    I Download The Microsoft Visual C++ 2010
    fix your sig. Bryan Mendoza is right.

    ---------- Post added at 09:25 PM ---------- Previous post was at 09:24 PM ----------

    Quote Originally Posted by TheGTAHeroes View Post


    How Do I Save It In DLL file?


    ---------- Post added at 07:23 AM ---------- Previous post was at 07:21 AM ----------

    I Download The Microsoft Visual C++ 2010
    fix your sig. Bryan Mendoza is right.
    https://www.mpgh.net/forum/290-crossf...rosshairs.html
    ------UNDETECTED INJECTOR
    NEVER TRUST grayback!
    I'm a Visual Basic Programmer and a good HTML coder


  9. #8
    TheGTAHeroes's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    San Andreas
    Posts
    110
    Reputation
    10
    Thanks
    69
    My Mood
    Buzzed
    Quote Originally Posted by blacksquad View Post
    fix your sig. Bryan Mendoza is right.

    ---------- Post added at 09:25 PM ---------- Previous post was at 09:24 PM ----------


    fix your sig. Bryan Mendoza is right.
    Alright I fixed. and i added more features . and what Bryan Mendoza Said?


    ---------- Post added at 07:37 AM ---------- Previous post was at 07:36 AM ----------

    I Will Release that when aimbot patched
     

    [IMG]https://i1202.photobucke*****m/albums/bb361/partiiee/cheaters04.gif[/IMG]


  10. #9
    UTAN's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    46
    Quote Originally Posted by TheGTAHeroes View Post
    How Do I Save It In DLL file?
    mas lalo kapa mahihirapan sa paghahanap ng Undetected base

  11. #10
    TheGTAHeroes's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    San Andreas
    Posts
    110
    Reputation
    10
    Thanks
    69
    My Mood
    Buzzed
    Quote Originally Posted by UTAN View Post
    mas lalo kapa mahihirapan sa paghahanap ng Undetected base
    I Got Undetected Base. I Will Release When 2 Aimbot Creators Are Patched.


    ---------- Post added at 08:58 AM ---------- Previous post was at 08:56 AM ----------

    Nilagyan Ko Ng 7+ Features. No Recoil, And More.
     

    [IMG]https://i1202.photobucke*****m/albums/bb361/partiiee/cheaters04.gif[/IMG]


  12. #11
    UTAN's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    46
    so nagamit mona?
    asahan ko ang pag re-release mo ha

    EDIT:
    ako gumagawa pa ako Addy Logger
    pero hindi pa tapos https://www.mpgh.net/forum/649-crossf...dy-logger.html
    Last edited by UTAN; 10-01-2012 at 09:04 AM.

  13. #12
    ayawmanmik's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    In Your Window
    Posts
    277
    Reputation
    10
    Thanks
    2,754
    My Mood
    Aggressive
    THis is very simple PM Me if you need base undetected Memory Function

  14. #13
    grayback's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    113
    Reputation
    10
    Thanks
    4
    My Mood
    Yeehaw
    Last edited by grayback; 10-02-2012 at 03:26 AM.

  15. #14
    TheGTAHeroes's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    San Andreas
    Posts
    110
    Reputation
    10
    Thanks
    69
    My Mood
    Buzzed
    Quote Originally Posted by ayawmanmik View Post
    THis is very simple PM Me if you need base undetected Memory Function
    You Got Undetected Base? Can You PM Me?
     

    [IMG]https://i1202.photobucke*****m/albums/bb361/partiiee/cheaters04.gif[/IMG]


Similar Threads

  1. [Help Request] Err -> Coding for mw3 tools/ hacks..mods
    By SourLemons in forum Call of Duty Modern Warfare 3 Help
    Replies: 0
    Last Post: 12-27-2011, 02:51 PM
  2. [Tutorial] How To Create a simple Memory Hack
    By Assassin's Creed in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 12-11-2011, 04:32 PM
  3. [Help] Detours code for point blank hacks
    By indonesianHacker in forum C++/C Programming
    Replies: 3
    Last Post: 05-20-2011, 09:06 AM
  4. Some One Try This Please Source Code For 1 Hit Hack
    By talamanak in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 28
    Last Post: 10-28-2010, 04:56 PM
  5. Source Codes For an Auto hack good features
    By 11vasher11 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 10-13-2010, 03:05 AM