Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    ipwnu2day's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish

    Unhappy NX Chams + Crosshair HELP!

    Ok today I came across this message from OBrozz giving you the code of the NX Chams + Crosshair, but I don't know how to get to this stuff "Xor.h", "Strings.h", can someone please be kindly providing step by step on how to make this in c++. I don't know if I'm doing something wrong because I go to Win32 Application, Select DLL, and can't find the source of what he did. Please provide a tutorial for me, or something!

    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)

  2. #2
    -Dimensions-'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    243
    Reputation
    2
    Thanks
    162
    My Mood
    Aggressive
    You clearly don't know how to code and your looking for someone to do the work for you.
    No.

  3. #3
    Wilds's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    here
    Posts
    522
    Reputation
    1
    Thanks
    170
    My Mood
    Relaxed
    If you think anyone will help you, when you don't even know the simplest of C++, then you sir, are on crack.

  4. #4
    kibbles18's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    US
    Posts
    860
    Reputation
    5
    Thanks
    127
    Why are you editing a register and not restoring it? That will most likley cause a crash by itself.

  5. #5
    -RxÐ-'s Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    418
    Reputation
    10
    Thanks
    28
    My Mood
    Tired
    lean c++,and this will be easy with you

  6. #6
    ipwnu2day's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish

    Talking

    Quote Originally Posted by wolffang0000 View Post
    If you think anyone will help you, when you don't even know the simplest of C++, then you sir, are on crack.
    -.- wow thanks...... I thought there would be helpfull people, but this, this is real sad right here! All of these websites are the same fucking idiots, noobs, shitheads, fuckers, non-helpful people, think they know what they do, ect. Now im actually thinking that all these people are greedy bastards. Is there anyone else who wants to step up, and actually tell me what to do - sense I have the code????!?!??!?!?!?!?!

  7. #7
    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 -Dimensions- View Post
    You clearly don't know how to code and your looking for someone to do the work for you.
    No.
    and you do? ("You clearly don't know how to code")
    I just like programming, that is all.

    Current Stuff:

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

  8. #8
    Ixxz's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    102
    Reputation
    13
    Thanks
    23
    My Mood
    Fine
    Quote Originally Posted by ipwnu2day View Post
    -.- wow thanks...... I thought there would be helpfull people, but this, this is real sad right here! All of these websites are the same fucking idiots, noobs, shitheads, fuckers, non-helpful people, think they know what they do, ect. Now im actually thinking that all these people are greedy bastards. Is there anyone else who wants to step up, and actually tell me what to do - sense I have the code????!?!??!?!?!?!?!
    No comment.
    OT: I agree with -Dimensions-, don't expect other people to do the work for you. Try learning to program, and save yourself the trouble of begging. /

  9. #9
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    That was my tutorial I made
    No I do not make game hacks anymore, please stop asking.

  10. #10
    ipwnu2day's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish

    Talking

    Quote Originally Posted by flameswor10 View Post
    That was my tutorial I made
    Lol.... Guess he leeched your tutorial, but seriously though..... I tried to enter the code in c++ and I got 2 errors! | Now I'm stuck with 2 errors!

    Error 2 error LNK1169: one or more multiply defined symbols found C:\Users\Nevan\documents\visual studio 2010\Projects\Beastly_V1.0\Debug\Beastly_V1.0.dll 1 1 Beastly_V1.0

    Error 1 error LNK2005: _DllMain@12 already defined in Beastly_V1.0.obj C:\Users\Nevan\documents\visual studio 2010\Projects\Beastly_V1.0\Beastly_V1.0\dllmain.ob j Beastly_V1.0

  11. #11
    DecoderBack's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    111
    Reputation
    10
    Thanks
    12
    Learn Cpp

    C#(.net)/C++ Coder
    Assembly coder [Current learning more]

  12. #12
    ipwnu2day's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish

    Exclamation PLEASE CLOSE THIS TOPIC!

    Quote Originally Posted by DecoderBack View Post
    Learn Cpp
    That didn't help at all. I have a c++ book, but all it is, is a bunch of blah blah blah shit, and it doesn't say shit about .dlls! So really that didn't help me at all - Anyone else want to fix my fucking errors?

    Alright I finally figured it out, so now I don't need anymore idiots posting in this Topic! So if someone can kindly close this Topic it would be usefull - THANK YOU!

    Problem Was Solved
    Problem Was Solved
    Problem Was Solved
    Problem Was Solved
    Problem Was Solved
    Last edited by ipwnu2day; 08-01-2011 at 12:06 PM.

  13. #13
    kibbles18's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    US
    Posts
    860
    Reputation
    5
    Thanks
    127
    Nice Signature. YOu expect your book to teach you how to hack? You rip on a pretty nice HackShield because everyone else does?

  14. #14
    DecoderBack's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    111
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by kibbles18 View Post
    Nice Signature. YOu expect your book to teach you how to hack? You rip on a pretty nice HackShield because everyone else does?
    WOW !

    Books can't teach how to hack Games. To learn how to hack you must to use all skill you learned from em and also much more with years
    Last edited by DecoderBack; 08-02-2011 at 04:04 AM.

    C#(.net)/C++ Coder
    Assembly coder [Current learning more]

  15. #15
    ipwnu2day's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish

    Post

    Quote Originally Posted by DecoderBack View Post
    WOW !

    Books can't teach how to hack Games. To learn how to hack you must to use all skill you learned from em and also much more with years
    This book does not have anything on .dlls what so ever, and I know that it doesn't teach you hacks you dumbass! :| -.-

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] Need help crosshair help
    By deniz617 in forum CrossFire Help
    Replies: 2
    Last Post: 08-13-2011, 09:36 PM
  2. Chams-Crosshair-Wireframe
    By whtlight2 in forum Combat Arms Hacks & Cheats
    Replies: 96
    Last Post: 07-29-2009, 04:19 PM
  3. New release hack for cf {{chams,crosshair,wireframe,wallhack}}
    By kizzme_not in forum CrossFire Hacks & Cheats
    Replies: 19
    Last Post: 06-23-2009, 07:09 PM
  4. Free Chams,CrossHair,WallHack,FullBright,and WireFrame
    By enriqueb4567 in forum Combat Arms Hacks & Cheats
    Replies: 97
    Last Post: 04-20-2009, 11:20 AM
  5. SIMPLE CHAMS CROSSHAIR NOT WOrKING
    By zekeria in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 03-03-2009, 05:50 PM