Page 7 of 7 FirstFirst ... 567
Results 91 to 100 of 100
  1. #91
    Coder_Anonymous's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Born: London,UK -- Live: LA,USA
    Posts
    2
    Reputation
    10
    Thanks
    0
    I'm wondering that too.

  2. #92
    AnthonyT145's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    MPGH
    Posts
    66
    Reputation
    39
    Thanks
    4
    My Mood
    Happy
    flameswor10 can you help me on how to attach the code to Ollydbg plz?Im trying to learn how to make hacks for combat arms but i was wonder if maybe you could teach me just a few things or so if thats ok with you?

  3. #93
    iMoD- HD`'s Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    L.A , California
    Posts
    87
    Reputation
    10
    Thanks
    7
    My Mood
    Mellow
    Quote Originally Posted by MarissaMonily View Post
    Wel obviously i try to learn things but im too stupid to learn them -really frustrated-
    If i had the patience and if u would help me learn i would but no none has time for me
    ii can be your tutor but you cant be annoying .-.

  4. #94
    mohammed9963's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    14
    My Mood
    Aggressive
    what does this hack do?

  5. #95
    TheLegitKz01's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Amused
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Hey guys.
    I saw much much posts here about making hacks. So here is a tutorial how to make them. Please press the thanksbutton

    Downloads
    1. Microsoft Visual C++ 2010/2008. Link: Visual C++ 2010 Express - Download - CHIP Online
    2. Microsoft DirectX SDK. Link: Download Details - Microsoft Download Center - DirectX SDK - (June 2010)
    3. Some source code. Link: https://www.mpgh.net/forum/207-combat...menu-base.html

    How To Use the Files
    After you downloaded the files, open them. So install Visual C++ and DIrectX SDK and extract the menubase to your desktop. After you installed all, open up MSV C++. Than click "File" -> "New" -> "Project" and it should popup a new window. Screenshot:


    Now a new window popup. Just click "Next". Another window will popup. Screenshot:


    Now we can add the code. If you want to open the menu base just open the project. But here we must add own code. So i will give you for example a hotkey code. Rightclick source files -> add -> new element and add a new .cpp file. Now you can add the code:

    [html]#include <windows.h>


    void testTH()
    {
    MessageBoxA(NULL, "This is my MsgBox WOO ", "My MsgBox", MB_OK);
    }

    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)testTH, 0, 0, 0);

    }

    return TRUE;
    }[/html]

    Now choose at top instead of "Debug" "Release" and press the green button. Now it compile the code. After compiling it had created the Dll-File which you easilly can inject with an injector. Look on mpgh for Injectors. The Dll-File's path should be: C:\Users\[Username]\Documents\Visual Studio 2010\Projects\[Projectname]\Release\[Projectname].dll

    I hope I could help you. Please press the "thanksbutton" on the buttom on the right if it worked for you

    This doesn't explain everything i want to know how to find dumps and everything this only about hotkeys and it doesnt even explain
    Last edited by TheLegitKz01; 06-28-2012 at 06:14 PM.

  6. #96
    dungzkii's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    #defiine ADR_MPGH
    Posts
    1,473
    Reputation
    10
    Thanks
    2,175
    My Mood
    Sneaky
    great tutorial sir

  7. #97
    neopentan's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    0
    My Mood
    Busy
    hmm i need to try it . gj

  8. #98
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Quote Originally Posted by johnmicel View Post
    Forget to mentioned I play CabalPh. I have edited some files inside the data folder. And successfully made a Wall Hack. But GameGuard updated and patched it. Checking mcl files each time i open the game giving an error "Could not found or corrupt mcl files"
    But when using a bypass Wall hack still work. The Problem with the bypass is that the games get disconnected every 5 minutes. The game have a heartbeat that will check files every 5 mins. Please if someone can help me how to make a script to either removed the DC flags every 5 minutes or bypass the mcl check Please i need you. Enlightened me please thanks...
    And what this have to do with CA?
    But, I would say you shouldnt block the callbacks, the heartbeat is checking them...

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  9. #99
    stuped200's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Canada, Quebec
    Posts
    32
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    I was reallyyy confused by your wording and all but I got it working :P
    Hey beautifuls

  10. #100
    LilGho$t's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    419
    Reputation
    9
    Thanks
    330
    My Mood
    Twisted
    bump much? Good post and fairly useful for beginners but bump much xD

Page 7 of 7 FirstFirst ... 567