Results 1 to 10 of 10
  1. #1
    LawlFaceXD's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Your Mind
    Posts
    275
    Reputation
    58
    Thanks
    102
    My Mood
    Happy

    How to make a Combat Arms Hotkey hack

    Okay I was persuaded to make a hotkey hack before attempting a menu. Though I have no idea how to start.

    Stuff I need to know
    -How to code the hack
    -How to add the addies properly


    I have never coded in C++ before so go easy, maybe just start me off with something simple like chams or something.

    Though I "need" to know how to code this thing, so a step by step tutorial would be helpful.

    Also could it be possible to make a hotkey hack in VB 2010?

    Thanks @Ethereal for taking the time and making that awesome looking Darksiders signature up top
    PRESS THANKS IF I HELPED

  2. #2
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    Study some C++ so we can actually teach you withot giving you code to C+P...

  3. #3
    LawlFaceXD's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Your Mind
    Posts
    275
    Reputation
    58
    Thanks
    102
    My Mood
    Happy
    Quote Originally Posted by Saltine View Post
    Study some C++ so we can actually teach you withot giving you code to C+P...
    I have tried, and have failed at it. also what is C+P??

    I'm ok when it comes to modding but when it comes to making a hack I am a noob

    I just want some examples I have been looking around and have found some promosing ones, so I am downloading C++ now to test it out. I believe I have figured out where to put the addies so I just have to wait and see if I was right.

    I know it's allot to ask but could you send me some examples via pm??

    Thanks @Ethereal for taking the time and making that awesome looking Darksiders signature up top
    PRESS THANKS IF I HELPED

  4. #4
    L80mans's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    136
    Reputation
    10
    Thanks
    155
    My Mood
    Blah
    Quote Originally Posted by LawlFaceXD View Post
    I have tried, and have failed at it. also what is C+P??

    I'm ok when it comes to modding but when it comes to making a hack I am a noob

    I just want some examples I have been looking around and have found some promosing ones, so I am downloading C++ now to test it out. I believe I have figured out where to put the addies so I just have to wait and see if I was right.

    I know it's allot to ask but could you send me some examples via pm??
    c+p= COPY AND PASTE HACKS

  5. #5
    KawaiiSlut's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    419
    Reputation
    16
    Thanks
    87
    Quote Originally Posted by L80mans View Post
    c+p= COPY AND PASTE HACKS
    @LawlFaceXD you can learn Copy And Paste from @L80mans I've heard he is very good at that

  6. The Following 2 Users Say Thank You to KawaiiSlut For This Useful Post:

    OBrozz (10-10-2011),Saltine (10-12-2011)

  7. #6
    L80mans's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    136
    Reputation
    10
    Thanks
    155
    My Mood
    Blah
    Quote Originally Posted by KawaiiSlut View Post
    @LawlFaceXD you can learn Copy And Paste from @L80mans I've heard he is very good at that
    @KawaiiSlut your a fucking fagget fuck off your just mad i dont want to buy your vip because your a ass

  8. #7
    KawaiiSlut's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    419
    Reputation
    16
    Thanks
    87
    Quote Originally Posted by L80mans View Post
    @KawaiiSlut your a fucking fagget fuck off your just mad i dont want to buy your vip because your a ass
    cool story I don't copy and paste code and say omg i made my first hack
    credits:
    me.

    lol nub

  9. #8
    Refrain's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    135
    Reputation
    22
    Thanks
    28
    Quote Originally Posted by L80mans View Post
    @KawaiiSlut your a fucking fagget fuck off your just mad i dont want to buy your vip because your a ass
    you've activated my trap card

  10. The Following User Says Thank You to Refrain For This Useful Post:

    OBrozz (10-10-2011)

  11. #9
    mountainjew's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    18
    My Mood
    Amused
    Here is a really sweet resource where you can find everything you need!

    Also, visual studio and visual c++ no longer support creating hacks. You have to get notepad++ and gcc to create and compile hacks now.

    https://www.mpgh.net/forum/search.php


    Since I just got laid 23 minutes ago, I will be nice and give you a starter base:

    Code:
    /*Jew base- By Mountainjew... "Jew want jew want with it"*/
    #include <windows.h>
    
    bool hack1 = false; //chams
    
    
    void handleInput(){
    
    	//key dection and hack triggers
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    			hack1 = (!hack1);
    }
    
    void handleLogic(){
    	
    		if(hack1){
    			//method of activating hack here
    		}
    		
    }
    
    void Main (void){
    	while(1){
    		handleInput();
    		handleLogic();	
    	}
    }
    DWORD WINAPI LeachersAnonymous (LPVOID){	
    	
    	Main();
    	
    	return 1;
    	
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ){
    	
    	if ( dwReason == DLL_PROCESS_ATTACH ){
    		
    		CreateThread(NULL, NULL, LeachersAnonymous, NULL, NULL, NULL);
    
    	}
    
    	return TRUE;
    
    
    }
    just add your console command handler, hack detour, and hack methods in and it will work just fine. Refer to the link above for help.
    Last edited by mountainjew; 10-11-2011 at 05:37 PM.

  12. The Following User Says Thank You to mountainjew For This Useful Post:

    LawlFaceXD (10-11-2011)

  13. #10
    LawlFaceXD's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Your Mind
    Posts
    275
    Reputation
    58
    Thanks
    102
    My Mood
    Happy
    Quote Originally Posted by mountainjew View Post
    Here is a really sweet resource where you can find everything you need!

    Also, visual studio and visual c++ no longer support creating hacks. You have to get notepad++ and gcc to create and compile hacks now.

    https://www.mpgh.net/forum/search.php

    Thanked+rep

    Hope this works, I shall try it and see what I can do


    Since I just got laid 23 minutes ago, I will be nice and give you a starter base:

    Code:
    /*Jew base- By Mountainjew... "Jew want jew want with it"*/
    #include <windows.h>
    
    bool hack1 = false; //chams
    
    
    void handleInput(){
    
    	//key dection and hack triggers
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    			hack1 = (!hack1);
    }
    
    void handleLogic(){
    	
    		if(hack1){
    			//method of activating hack here
    		}
    		
    }
    
    void Main (void){
    	while(1){
    		handleInput();
    		handleLogic();	
    	}
    }
    DWORD WINAPI LeachersAnonymous (LPVOID){	
    	
    	Main();
    	
    	return 1;
    	
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ){
    	
    	if ( dwReason == DLL_PROCESS_ATTACH ){
    		
    		CreateThread(NULL, NULL, LeachersAnonymous, NULL, NULL, NULL);
    
    	}
    
    	return TRUE;
    
    
    }
    just add your console command handler, hack detour, and hack methods in and it will work just fine. Refer to the link above for help.
    Thanked+rep

    Hope this works, I shall try it and see what I can do

    Thanks @Ethereal for taking the time and making that awesome looking Darksiders signature up top
    PRESS THANKS IF I HELPED

Similar Threads

  1. [REQ]How to make a combat arms hack.
    By shadingkaito in forum Programming Tutorial Requests
    Replies: 3
    Last Post: 08-16-2010, 04:05 AM
  2. how to make a combat arms hack !!read!!
    By carloswar3 in forum Combat Arms Help
    Replies: 5
    Last Post: 06-25-2010, 04:52 PM
  3. How to make a combat arms bypass?
    By rainmaker4 in forum Programming Tutorials
    Replies: 5
    Last Post: 09-15-2009, 10:22 AM
  4. Does anyone know how to make the combat arms load faster
    By ChristopherBigWallace in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 07-03-2009, 09:47 AM
  5. How to make a Combat arms tut.
    By Evilipod in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 09-14-2008, 04:27 PM