Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    1on1's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    68
    Reputation
    14
    Thanks
    9

    Unhappy Quick HotKey Base w/ 1 Hack

    Hello guys i know im not very active here since my last release. i havent played CA in a while and i was wondering if someone could possibly send me the sourcecode of a CA NA Hotkey hack (I only want nx cham). im not that experianced with c++ but i am willing to learn.

    please and thank you

  2. #2
    the grim reaper's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Ca Na Section
    Posts
    166
    Reputation
    19
    Thanks
    48
    My Mood
    Amazed
    people don't really use hotkey's anymore as far as i know people mostly use menu's but hotkey's are good to learn on. but you should learn D3D and c++ both so you can make menu's

  3. #3
    1on1's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    68
    Reputation
    14
    Thanks
    9
    i only want nx chams with the ability to turn them off by pressing left and right

    pressing the Left = ON Right=OFF

  4. #4
    the grim reaper's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Ca Na Section
    Posts
    166
    Reputation
    19
    Thanks
    48
    My Mood
    Amazed
    well if you keep trying maybe some one will have a hotkey base idk but i dont i only use D3D so idk

  5. #5
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  6. #6
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Read up on this forum and throw something together..

  7. #7
    the grim reaper's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Ca Na Section
    Posts
    166
    Reputation
    19
    Thanks
    48
    My Mood
    Amazed
    yup xD just use what godhack sent you and start learning...

  8. #8
    1on1's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    68
    Reputation
    14
    Thanks
    9
    its not up to date ... come on guys you guys can code this in like 5 min. why make me go through 2-3weeks of frustration to find out the method i got working is patched again.

    Thank you for trying but this is way to complicated for me.
    Last edited by 1on1; 01-22-2011 at 03:05 PM.

  9. #9
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Learn the basics of c++, and then it will be much easier for us to help you. Not the full language, just the concepts.



    Put this image in your signature if you support HTML5 development!

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

    the grim reaper (01-22-2011)

  11. #10
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Quote Originally Posted by 1on1 View Post
    its not up to date ... come on guys you guys can code this in like 5 min. why make me go through 2-3weeks of frustration to find out the method i got working is patched again.



    Thank you for trying but this is way to complicated for me.
    haha, to complicated ? Fucking C+P. better Stop with C++ Leecher.

    Thanks Cosmos


  12. #11
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    If thats all you want then just use rez chams...

    /moved




  13. #12
    1on1's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    68
    Reputation
    14
    Thanks
    9
    Quote Originally Posted by Subliminal View Post
    If thats all you want then just use rez chams...

    /moved
    but i need to be able to turn it on and off..

  14. #13
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by kongamonga View Post
    haha, to complicated ? Fucking C+P. better Stop with C++ Leecher.
    you don't have to flame /
    he asked nicely and we gave him what he wants





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  15. The Following User Says Thank You to GodHack2 For This Useful Post:

    1on1 (01-22-2011)

  16. #14
    1on1's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    68
    Reputation
    14
    Thanks
    9
    Code:
    #include "stdafx.h"
    #include <windows.h>
    //=======================================
    //declarations
    #define LTClient 0x3718BF20
    #define EngineLTC 0x4A4810
    //=======================================
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void __cdecl PushToConsole(char *szCommand) 
    { 
        typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t PushToConsole = (RunConsoleCommand_t)EngineLTC;
    
    
    }
    //=======================================
    void main()
    {
    	while(!IsGameReadyForHook()){
    		Sleep(200);
        }
    	bool nxchams = false;
    	while(true)
    	{
    		PushToConsole("ShowFPS 1");
    	if(GetAsyncKeyState(VK_HOME)<0)
    		if(nxchams){
    		PushToConsole("ShowFPS 0");
    		PushToConsole("SkelModelStencil 0");
    		nxchams = false;
    		}else{
    		PushToConsole("ShowFPS 1");
    		PushToConsole("SkelModelStencil 1");
    		nxchams = true;
    		}
    		}
    }
    //=======================================
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved)
    {
        switch (ul_reason_for_call)
        {
        case DLL_PROCESS_ATTACH:
            CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&main, NULL, 0,NULL);
            break;
        case DLL_THREAD_ATTACH:
        case DLL_THREAD_DETACH:
        case DLL_PROCESS_DETACH:
            break;
    	}
        return TRUE;
    }
    will this work??

  17. #15
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by 1on1 View Post
    its not up to date ... come on guys you guys can code this in like 5 min. why make me go through 2-3weeks of frustration to find out the method i got working is patched again.



    Thank you for trying but this is way to complicated for me.
    Quote Originally Posted by 1on1 View Post
    Code:
    #include "stdafx.h"
    #include <windows.h>
    //=======================================
    //declarations
    #define LTClient 0x3718BF20
    #define EngineLTC 0x4A4810
    //=======================================
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void __cdecl PushToConsole(char *szCommand) 
    { 
        typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t PushToConsole = (RunConsoleCommand_t)EngineLTC;
    
    
    }
    //=======================================
    void main()
    {
    	while(!IsGameReadyForHook()){
    		Sleep(200);
        }
    	bool nxchams = false;
    	while(true)
    	{
    		PushToConsole("ShowFPS 1");
    	if(GetAsyncKeyState(VK_HOME)<0)
    		if(nxchams){
    		PushToConsole("ShowFPS 0");
    		PushToConsole("SkelModelStencil 0");
    		nxchams = false;
    		}else{
    		PushToConsole("ShowFPS 1");
    		PushToConsole("SkelModelStencil 1");
    		nxchams = true;
    		}
    		}
    }
    //=======================================
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved)
    {
        switch (ul_reason_for_call)
        {
        case DLL_PROCESS_ATTACH:
            CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&main, NULL, 0,NULL);
            break;
        case DLL_THREAD_ATTACH:
        case DLL_THREAD_DETACH:
        case DLL_PROCESS_DETACH:
            break;
    	}
        return TRUE;
    }
    will this work??
    No. It will not work.

Page 1 of 2 12 LastLast