Results 1 to 11 of 11
  1. #1
    youngloveb14's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Kansas
    Posts
    117
    Reputation
    10
    Thanks
    14
    My Mood
    Relaxed

    Lightbulb Can someone teach me how to make Crosshair,Nx Chams

    Hey mpgh can someone teach me how to make crosshair and NX chams if you can just message me or leave your Yahoo,MSN email in a comment and ill add you from there, Thanks Youngloveb14

  2. #2
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    google
    C++ crosshair source d3d
    nx chams ptc



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

  3. #3
    Threadstarter
    Unverified User
    youngloveb14's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Kansas
    Posts
    117
    Reputation
    10
    Thanks
    14
    My Mood
    Relaxed
    okay thanks sir..

  4. #4
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Quote Originally Posted by _Fk127_ View Post
    google
    C++ crosshair source d3d
    nx chams ptc
    Honestly i thought that was common sense.

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

    OBrozz (05-16-2011)

  6. #5
    Stewie_Griffin's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Quahog
    Posts
    241
    Reputation
    82
    Thanks
    41
    My Mood
    Tired
    I can teach you HOW TO Dougie

  7. #6
    Klang's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by Stewie_Griffin View Post
    I can teach you HOW TO Dougie
    Or ill teach him how to snuggie.

  8. #7
    OBrozz's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    819
    Reputation
    65
    Thanks
    813
    I just started learning C++ coding today, this took me about 3 minutes. Enjoy

    Xor.h
    Code:
    #ifndef _XOR_H
    #define _XOR_H
    template <int XORSTART, int BUFLEN, int XREFKILLER>
    
    class XorStr
    {
    private: 
    	XorStr();
    public: 
    	char s[ BUFLEN ];
    
    	XorStr( const char * xs );
    
    	~XorStr()
    	{
    		for ( int i = 0; i < BUFLEN; i++ ) s[ i ]=0; 
    	}
    };
    
    template <int XORSTART, int BUFLEN, int XREFKILLER>
    XorStr<XORSTART,BUFLEN,XREFKILLER>::XorStr( const char * xs )
    {
    	int xvalue = XORSTART;
    	int i = 0;
    
    	for ( ; i < ( BUFLEN - 1 ); i++ ) 
    	{
    		s[ i ] = xs[ i - XREFKILLER ] ^ xvalue;
    		xvalue += 1;
    		xvalue %= 256;
    	}
    
    	s[ BUFLEN - 1 ] = 0;
    }
    #endif
    Strings.h
    Code:
    #define NxChamsOn /*SkelModelStencil 1*/XorStr<0x22,19,0x9A03721A>("\x71\x48\x41\x49\x6B\x48\x4C\x4C\x46\x78\x58\x48\x40\x4C\x59\x5D\x12\x02"+0x9A03721A).s
    #define NxChamsOff /*SkelModelStencil 0*/XorStr<0xA2,19,0x1C073F31>("\xF1\xC8\xC1\xC9\xEB\xC8\xCC\xCC\xC6\xF8\xD8\xC8\xC0\xCC\xD9\xDD\x92\x83"+0x1C073F31).s
    Core.cpp
    Code:
    #include <windows.h>
    int HackOn = 0;
    int HackMax = 10;
    bool test = false;
    #define ADDR_SBULLLETS			0x374BBF16 
    
    
    void WINAPIV RunConsoleCommand( const char* cmd )
    {
    	_asm
    	{
    		PUSH cmd
    		MOV EAX, 0x485E10
    		CALL EAX
    		ADD ESP, 0x4
    	}
    }
    
    void Main (void)
    {
    	while(1)
    	{
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    		{
    			test = (!test);
    		}
    		if(GetAsyncKeyState(VK_NUMPAD2)&1)
    		{
    			HackOn ++;
    			if(HackOn == HackMax) HackOn = 0;
    		}
    		
    		if(test){
    			RunConsoleCommand(ChamsOn);
    		}else{
    			RunConsoleCommand(ChamsOff);
    		}
    	}
    }
    DWORD WINAPI Lesson (LPVOID)
    {	
    	Main();
    	return 1;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
    	}
    return TRUE;
    
    
    }
    Credits:
    - Flameswor10(Core.cpp/Edited by me)
    Last edited by OBrozz; 05-16-2011 at 06:14 PM.

  9. #8
    ++PashaAmd++'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    229
    Reputation
    11
    Thanks
    37
    Quote Originally Posted by OBrozz View Post
    I just started learning C++ coding today, this took me about 3 minutes. Enjoy

    Xor.h
    Code:
    #ifndef _XOR_H
    #define _XOR_H
    template <int XORSTART, int BUFLEN, int XREFKILLER>
    
    class XorStr
    {
    private: 
    	XorStr();
    public: 
    	char s[ BUFLEN ];
    
    	XorStr( const char * xs );
    
    	~XorStr()
    	{
    		for ( int i = 0; i < BUFLEN; i++ ) s[ i ]=0; 
    	}
    };
    
    template <int XORSTART, int BUFLEN, int XREFKILLER>
    XorStr<XORSTART,BUFLEN,XREFKILLER>::XorStr( const char * xs )
    {
    	int xvalue = XORSTART;
    	int i = 0;
    
    	for ( ; i < ( BUFLEN - 1 ); i++ ) 
    	{
    		s[ i ] = xs[ i - XREFKILLER ] ^ xvalue;
    		xvalue += 1;
    		xvalue %= 256;
    	}
    
    	s[ BUFLEN - 1 ] = 0;
    }
    #endif
    Strings.h
    Code:
    #define NxChamsOn /*SkelModelStencil 1*/XorStr<0x22,19,0x9A03721A>("\x71\x48\x41\x49\x6B\x48\x4C\x4C\x46\x78\x58\x48\x40\x4C\x59\x5D\x12\x02"+0x9A03721A).s
    #define NxChamsOff /*SkelModelStencil 0*/XorStr<0xA2,19,0x1C073F31>("\xF1\xC8\xC1\xC9\xEB\xC8\xCC\xCC\xC6\xF8\xD8\xC8\xC0\xCC\xD9\xDD\x92\x83"+0x1C073F31).s
    Core.cpp
    Code:
    #include <windows.h>
    int HackOn = 0;
    int HackMax = 10;
    bool test = false;
    #define ADDR_SBULLLETS			0x374BBF16 
    
    
    void WINAPIV RunConsoleCommand( const char* cmd )
    {
    	_asm
    	{
    		PUSH cmd
    		MOV EAX, 0x485E10
    		CALL EAX
    		ADD ESP, 0x4
    	}
    }
    
    void Main (void)
    {
    	while(1)
    	{
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    		{
    			test = (!test);
    		}
    		if(GetAsyncKeyState(VK_NUMPAD2)&1)
    		{
    			HackOn ++;
    			if(HackOn == HackMax) HackOn = 0;
    		}
    		
    		if(test){
    			RunConsoleCommand(ChamsOn);
    		}else{
    			RunConsoleCommand(ChamsOff);
    		}
    	}
    }
    DWORD WINAPI Lesson (LPVOID)
    {	
    	Main();
    	return 1;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
    	}
    return TRUE;
    
    
    }
    Credits:
    - Flameswor10(Core.cpp/Edited by me)
    watch him come back and say it d/cs

  10. #9
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by OBrozz View Post
    I just started learning C++ coding today, this took me about 3 minutes. Enjoy

    Xor.h
    Code:
    #ifndef _XOR_H
    #define _XOR_H
    template <int XORSTART, int BUFLEN, int XREFKILLER>
    
    class XorStr
    {
    private: 
    	XorStr();
    public: 
    	char s[ BUFLEN ];
    
    	XorStr( const char * xs );
    
    	~XorStr()
    	{
    		for ( int i = 0; i < BUFLEN; i++ ) s[ i ]=0; 
    	}
    };
    
    template <int XORSTART, int BUFLEN, int XREFKILLER>
    XorStr<XORSTART,BUFLEN,XREFKILLER>::XorStr( const char * xs )
    {
    	int xvalue = XORSTART;
    	int i = 0;
    
    	for ( ; i < ( BUFLEN - 1 ); i++ ) 
    	{
    		s[ i ] = xs[ i - XREFKILLER ] ^ xvalue;
    		xvalue += 1;
    		xvalue %= 256;
    	}
    
    	s[ BUFLEN - 1 ] = 0;
    }
    #endif
    Strings.h
    Code:
    #define NxChamsOn /*SkelModelStencil 1*/XorStr<0x22,19,0x9A03721A>("\x71\x48\x41\x49\x6B\x48\x4C\x4C\x46\x78\x58\x48\x40\x4C\x59\x5D\x12\x02"+0x9A03721A).s
    #define NxChamsOff /*SkelModelStencil 0*/XorStr<0xA2,19,0x1C073F31>("\xF1\xC8\xC1\xC9\xEB\xC8\xCC\xCC\xC6\xF8\xD8\xC8\xC0\xCC\xD9\xDD\x92\x83"+0x1C073F31).s
    Core.cpp
    Code:
    #include <windows.h>
    int HackOn = 0;
    int HackMax = 10;
    bool test = false;
    #define ADDR_SBULLLETS			0x374BBF16 
    
    
    void WINAPIV RunConsoleCommand( const char* cmd )
    {
    	_asm
    	{
    		PUSH cmd
    		MOV EAX, 0x485E10
    		CALL EAX
    		ADD ESP, 0x4
    	}
    }
    
    void Main (void)
    {
    	while(1)
    	{
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    		{
    			test = (!test);
    		}
    		if(GetAsyncKeyState(VK_NUMPAD2)&1)
    		{
    			HackOn ++;
    			if(HackOn == HackMax) HackOn = 0;
    		}
    		
    		if(test){
    			RunConsoleCommand(ChamsOn);
    		}else{
    			RunConsoleCommand(ChamsOff);
    		}
    	}
    }
    DWORD WINAPI Lesson (LPVOID)
    {	
    	Main();
    	return 1;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
    	}
    return TRUE;
    
    
    }
    Credits:
    - Flameswor10(Core.cpp/Edited by me)
    YEAAAA OWN THEM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


    You got my back
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  11. #10
    OBrozz's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    819
    Reputation
    65
    Thanks
    813
    Why does everyone troll and Spam here?
    Last edited by OBrozz; 05-17-2011 at 12:22 PM.

  12. #11
    Threadstarter
    Unverified User
    youngloveb14's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Kansas
    Posts
    117
    Reputation
    10
    Thanks
    14
    My Mood
    Relaxed
    @dave Close Please Thanks