Thread: Help at Hack

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed

    Help at Hack

    i create a hack but that wont work can anybody see a mistake ? please help me
    Code:
    #include <windows.h>
    
    // Adress List //
    
    #define Playerpointer 0x00B04E10 
    #define Serverpointer 0x00AFF5D8
    #define OFS_Z 0x10310
    #define ADR_AUTOMEDIC 0x00507C28
    #define ADR_Spread 0x00B094BC
    
    DWORD *ingame= (DWORD*)Playerpointer;
    DWORD *outgame= (DWORD*)Serverpointer;
    
    void Jump() // superjump if hit control button
    {
    if(GetAsyncKeyState(VK_LCONTROL) &1)
    {
    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_Z) = 1500;
    }
    }
    }
    
    void automedic()
    {
    if(GetAsyncKeyState(VK_NUMPAD7) &1)
    {
    DWORD dwProtect;
    const BYTE nop[6] = {0x90,0x90,0x90,0x90,0x90,0x90};
    VirtualProtect((void*)(ADR_AUTOMEDIC), 6, PAGE_EXECUTE_READWRITE, &dwProtect);
    memcpy((void*)ADR_AUTOMEDIC, &nop, 6);
    VirtualProtect((void*)(ADR_AUTOMEDIC), 6, dwProtect, NULL);
    } 
    }
    
    void spread () // no spread
    {
    *(float*) ADR_Spread = 0;
    }
    
    void HackThread() 
    {
    for(;; ) 
    {
    if(*ingame) //check if we are ingame.. prevent crashs
    {
    Jump();
    }
    if(*outgame)
    {
    }
    Sleep(200); //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,393
    My Mood
    Stressed
    Make sure your Address is correct. and add this to your ingame. spread(); & automedic();

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

    WhiteHat PH (04-10-2014)

  4. #3
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    ouch thanke you that was epic fail but i have problem with addies because i can't dump warrock.exe i have win7 64bit kernel detective and pe tools won't works

  5. #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,393
    My Mood
    Stressed
    use CHimpREC.

  6. #5
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    Analysis of process failed!

  7. #6
    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,393
    My Mood
    Stressed
    Quote Originally Posted by kikiloki View Post
    Analysis of process failed!
    Then you need to select warrock.exe again until CHimpREC analyses it properly.

  8. #7
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    but CHimpREC analyses everythink just Warrock.exe won't be analysed

  9. #8
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    is there any addies logger that works?

  10. #9
    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,393
    My Mood
    Stressed
    Just like @Alex_Agnew said.
    Quote Originally Posted by Alex_Agnew View Post
    When the loader is open press game start, then quickly open chimprec and select + dump it.
    You have to be really fast.

  11. The Following User Says Thank You to Jhem For This Useful Post:

    AeroMan (04-06-2014)

  12. #10
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    ty ty ty Jhem you are so cool

  13. #11
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    just one more question how can find ServerPointer and PlayerPointer ty

  14. #12
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,294
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    Quote Originally Posted by kikiloki View Post
    just one more question how can find ServerPointer and PlayerPointer ty
    You have to find a function that checks if you are in or outgame.
    It's hard to explain if you never really studied assembly and know what everything means.
    But that check is a pointer.

    for example.
    Code:
    mov eax, 9994C <- pointer
    mov esi, [eax+0Ch] <- store the pointer + ofs in esi
    eax then would be the pointer.
    I hope this helps in some way, if not tell me.

  15. #13
    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,393
    My Mood
    Stressed
    Problem solved @Mayion

  16. #14
    Mayion's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Bed
    Posts
    13,504
    Reputation
    4018
    Thanks
    8,372
    My Mood
    Twisted
    @ @kikiloki Solved?
    I do not use any type of messenger outside of MPGH.
    Inactive but you can reach me through VM/PM.










     

    Donator - 30 August 2013
    Battlefield Minion - 26 October 2013

    Blackshot Minion - 14 January 2014/16 September 2014
    Minecraft Minion - 7 February 2014/16 September 2014
    WarRock Minion - 23 February 2014
    League of Legends Minion - 21 March 2014

    Minion+ - 15 May 2014
    Other Semi-Popular First Person Shooter Minion - 8 August 2014
    CrossFire Minion - 23 October 2014
    Programming Section Minion - 13 November 2014
    Marketplace Minion - 7 December 2014

    Official Middleman - 7 December 2014 - 27 June 2015
    Moderator - 29 December 2014
    Project Blackout Minion - 10 January 2015
    News Force Interviewer - January 2015
    Steam Games Minion - 21 March 2015
    Dragon Nest Minion - 31 March 2015
    Publicist - April 2015 - 21 September 2015
    Global Moderator - 25 August 2015
    Super User - 13 August 2016



  17. #15
    kikiloki's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    74
    My Mood
    Amazed
    yes ty Jhem and Mayion

Page 1 of 2 12 LastLast

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