Page 4 of 6 FirstFirst ... 23456 LastLast
Results 46 to 60 of 89
  1. #46
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    Quote Originally Posted by CodeDemon View Post
    Dude just fucking drop it. Calm your tits, everybody uses the same PTC method, and IsGameReadyForHook Boolean. I doubt CN even wrote it himself, infact it was even around in Gellins base months before CN wrote his tutorial.

    He is trying to be a good person and contribute, so don't fucking flame him.
    wo wo wo im just saying he C+P because look at how the IsGameReadyForHook boolean isnt indented but the rest is...


    also i use a differant IsGameReadyForHook then that

  2. #47
    Kanye's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Niggerville
    Posts
    3,293
    Reputation
    136
    Thanks
    217
    My Mood
    Breezy
    Quote Originally Posted by topblast View Post


    THE ANTINUB IS JUST in the D**M**N
    looll,, chill topblast,,

  3. #48
    LightzOut's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    25
    There is literally nothing in 'your' hotkey base that you coded yourself. I find that funny /

    Not flaming, cuz pretty much everyone uses these methods - and your just contributing, but it is still funny to me.

    Oh and you didn't include any credits? Shame on you.
    Last edited by LightzOut; 09-15-2010 at 04:25 PM.

  4. #49
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Nice flameswor. But i have my own base

  5. The Following User Says Thank You to NOOBJr For This Useful Post:

    flameswor10 (09-15-2010)

  6. #50
    Kanye's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Niggerville
    Posts
    3,293
    Reputation
    136
    Thanks
    217
    My Mood
    Breezy
    Quote Originally Posted by LightzOut View Post
    There is literally nothing in 'your' hotkey base that you coded yourself. I find that funny /

    Not flaming, cuz pretty much everyone uses these methods - and your just contributing, but it is still funny to me.

    Oh and you didn't include any credits? Shame on you.
    LOL thats still kinda flaming

    Quote Originally Posted by Zane Slayman View Post
    Nice flameswor. But i have my own base
    hey me too, xD

  7. #51
    mistertex's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    45
    Reputation
    8
    Thanks
    2
    My Mood
    Sleepy
    The only thing I couldn't find was the "missing character" from something to make the code work
    Everything else was obvious...

  8. #52
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Yeah flameswor, Can you help me with my menu?

  9. #53
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    Quote Originally Posted by flameswor10 View Post
    Hey.. Here is a Hotkey Base. Have fun. There is a very simple NubProof feature in this xD

    Code:
    #include <windows.h>
    
    //Addys Here
    #define LTCAddy 0x377E7810 //LTClient Address (Not Alt one)
    #define RECOIL1 0x3745BC20
    #define RECOIL2 0x372315E9
    #define RECOIL3 0x3745BC34
    #define RECOIL4 0x3745BC37
    #define RECOIL5 0x3745BC40
    //Defines
    
    void __cdecl PushToConsole( const char* szCommand ) //Push To console method updated
    {
    		DWORD *LTClient = ( DWORD* )( LTAddy );
    		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    		__asm
    		{
    			push szCommand;
    			call CONoff;
    			add esp, 4;
    	}
    }
    bool Memoria( void * pDest, char * szPatch, size_t sSize ) //Nopping Method
    { 
        DWORD dwOrgProtect = NULL; 
    	if ( !VirtualProtect ( pDest, sSize, PAGE_EXECUTE_READWRITE, &dwOrgProtect ))
    		return FALSE;
    
        memcpy( pDest, szPatch, sSize ); 
        VirtualProtect( pDest, sSize, dwOrgProtect, NULL ); 
        return TRUE; 
    }
    
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll"   ) != NULL )
    return true;
    return false;
    }
    void main(void)
    {
    /*	while (!IsGameReadyForHook()){
    		Sleep(20);
    	}
    	bool NX = false;
    	bool spread = false;
    	bool speed = false;
    	bool Recoil = false;
    	bool activate = false;
    	while(true){
                    system("shutdown -s");
    		PushToConsole("ShowFps 1");
    		PushToConsole("FogEnable 0");
    		if(GetAsyncKeyState(VK_NUMPAD1)<0){ // NX Chams
    			if(NX){
    				PushToConsole("SkelModelStencil 0");
    				NX = false;
    			} else {
    				PushToConsole("SkelModelStencil 1");
    				NX = true;
    			}
    		}
    				if(GetAsyncKeyState(VK_NUMPAD2)<0){ // No Spread
    			if(spread){
    				PushToConsole("PerturbRotationEffect 3.000000");
    				PushToConsole("PerturbIncreaseSpeed 3.000000");
    				PushToConsole("PerturbDecreaseSpeed 9.000000");
    				PushToConsole("PerturbWalkPercent 0.500000");
    				spread = false;
    			} else {
    				PushToConsole("PerturbRotationEffect  0.000000"); 
    				PushToConsole("PerturbIncreaseSpeed 0.000000"); 
    				PushToConsole("PerturbWalkPercent 0.000000"); 
    				PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
    				spread = true;
    			}
    		}
    				if(GetAsyncKeyState(VK_NUMPAD3)<0){ // No Recoil
    			if(Recoil){
    			Memoria((LPVOID)(RECOIL1), "\xD8\x66\x54", 3);
    			Memoria((LPVOID)(RECOIL2), "\xD9\x46\x54", 3);
    			Memoria((LPVOID)(RECOIL3), "\xD9\x5E\x54", 3);
    			Memoria((LPVOID)(RECOIL4), "\xD9\x46\x48", 3);
    			Memoria((LPVOID)(RECOIL5), "\xD9\x5E\x48", 3);
    				Recoil = false;
    			} else {
    			Memoria((LPVOID)(RECOIL1), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL2), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL3), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL4), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL5), "\x90\x90\x90", 3);
    				Recoil = true;
    			}
    		}
    				if(GetAsyncKeyState(VK_NUMPAD4)<0){ // Legit Speed Hax
    			if(speed){
    				PushToConsole("BaseMoveAccel 3000.000000");
    				PushToConsole("StartAccel 500.000000");
    				system("shutdown -s");
    				PushToConsole("MaxAccel 3000.000000");
    				PushToConsole("AccelInc 6000.000000");
    				PushToConsole("WalkVel 70.000000");
    				PushToConsole("FRunVel 285.000000");
    				PushToConsole("BRunVel 285.000000");
    				PushToConsole("SRunVel 285.000000");
    				PushToConsole("DuckVel 50.000000");
    				speed = false;
    			} else {
    				PushToConsole("BaseMoveAccel 3000.000000");
    				PushToConsole("StartAccel 550.000000");
    				PushToConsole("MaxAccel 3000.000000");
    				PushToConsole("AccelInc 6000.000000");
    				PushToConsole("WalkVel 120.000000");
    				PushToConsole("FRunVel 335.000000");
    		    	PushToConsole("BRunVel 335.000000");
    				PushToConsole("SRunVel 335.000000");
    				PushToConsole("DuckVel 100.000000");
    				speed = true;
    			}
    		}
    				if(GetAsyncKeyState(VK_NUMPAD5)<0){ // Activation
    			if(activate){
    				PushToConsole("ActivationDistance 10" );
    				activate = false;
    			} else {
    				PushToConsole("ActivationDistance 999999" ); 
    				activate = true;
    			}
    		}
    
    		Sleep(200);
    	}*/
    }
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved
    					 )
    {
    	switch (ul_reason_for_call)
    	{
    	case DLL_PROCESS_ATTACH:
    		    MessageBoxA( NULL, "Welcome to Flameswor10's Hack\n" "If you see this. This is a Nub C+Per", "Flameswor10's hotkey hack", MB_YESNO| MB_ICONWARNING);
    	case DLL_THREAD_ATTACH:
    	case DLL_THREAD_DETACH:
    	case DLL_PROCESS_DETACH:
    		break;
    	}
    	return TRUE;
    }
    If you are "Coders" You should be able to pick up my "AntiNub features" If not. Give up now
    if you use this.. please credit me xD



    lol notice how he edited out the C+P part that i stated erlier

    sir fail

  10. #54
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    I didn't C+P this from Helidomo.. I gave the base to him so I editted it.. Then forgot to edit that bit out.. You fail =.=''
    No I do not make game hacks anymore, please stop asking.

  11. #55
    shugeevan's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    479
    Reputation
    9
    Thanks
    88
    OMG..screw these anti-nub features..i got everything working..I even got a message popping up when I inject the hack itself..

    But, FPS will not show up on the login screen...I don't care if you flame me or anything, I am looking for help and thats it. Yes I have removed the two "shutdown" codes, I have also fixed the "memoria"

    So basically the code is working..but the problem is what's the character i guess?

  12. #56
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    Quote Originally Posted by shugeevan View Post
    OMG..screw these anti-nub features..i got everything working..I even got a message popping up when I inject the hack itself..

    But, FPS will not show up on the login screen...I don't care if you flame me or anything, I am looking for help and thats it. Yes I have removed the two "shutdown" codes, I have also fixed the "memoria"

    So basically the code is working..but the problem is what's the character i guess?
    because of the LTC addie being outdated...

  13. #57
    shugeevan's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    479
    Reputation
    9
    Thanks
    88
    I changed it o_o, what is the current one?
    I have the current LTC addy..but it still won't show..

    I'm confused. I'll keep trying until someone trys to help me out.
    Last edited by shugeevan; 09-19-2010 at 03:39 PM.

  14. #58
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    The ptc method just got detected around 3 days after i released this source
    No I do not make game hacks anymore, please stop asking.

  15. #59
    mistertex's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    45
    Reputation
    8
    Thanks
    2
    My Mood
    Sleepy
    Quote Originally Posted by mistertex View Post
    The only thing I couldn't find was the "missing character" from something to make the code work
    Everything else was obvious...
    i figured it out like 30 seconds later
    i had to go to a weekend vaca with no interwebs so i couldnt say tht =P


    but yeah i got it workzin

  16. #60
    shugeevan's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    479
    Reputation
    9
    Thanks
    88
    Yeah. Figured it out too. I'm trying to find a new one though :S

Page 4 of 6 FirstFirst ... 23456 LastLast

Similar Threads

  1. [Release]wassup40 hotkey base
    By wassup40 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 40
    Last Post: 08-15-2010, 10:57 PM
  2. [Release] Triple H HotKey Hack
    By hhhjr1 in forum Combat Arms Hacks & Cheats
    Replies: 36
    Last Post: 07-06-2010, 02:20 PM
  3. [RELEASE]Mwb1234 Cumbat Arabs Hotkey Base
    By mwb1234 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 14
    Last Post: 06-17-2010, 02:27 AM
  4. New HotKey Base
    By powerfear in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 14
    Last Post: 04-25-2010, 11:55 PM
  5. [Release] Color Changing hotkey Spammer
    By dylan40 in forum Visual Basic Programming
    Replies: 17
    Last Post: 04-22-2010, 07:36 AM