[HELP] Source code mess up?

Posts 3134 of 34 · Page 3 of 3
Quote Originally Posted by jonnyboy9985 View Post
What about the fact that I need to press the button REALLY fast in order to activate it? And I thought it doesn't matter what way you order it? Like normal first, then hack?
Alright so again, I have the NX chams working BUT nothing else does... Is it the coding? Like since I know that this is the PROPER way to code, I added the &1 instead of <0 and it worked like I wanted... Now I just need to find how to get hover, fps, and speed working because those DON'T work wortha crap xD Can someone please provide me with the ORIGINAL speed values? So I can modify them and place them in my hack? I will release it soon, but I need to get it fully running first, and don't worry, I will post ALL of your names in the credits.
Quote Originally Posted by jonnyboy9985 View Post
Alright so again, I have the NX chams working BUT nothing else does... Is it the coding? Like since I know that this is the PROPER way to code, I added the &1 instead of <0 and it worked like I wanted... Now I just need to find how to get hover, fps, and speed working because those DON'T work wortha crap xD Can someone please provide me with the ORIGINAL speed values? So I can modify them and place them in my hack? I will release it soon, but I need to get it fully running first, and don't worry, I will post ALL of your names in the credits.
I'm sure I can fix it if you send me the base, theres no reason it shouldnt work if you do all of your hacks like the example

So No Fog, Speed, and tracers would be

Code:
 bool fog = false;
 bool speed = false;
 bool tracers = false;



if(GetAsyncKeyState(VK_NUMPAD1)&1){
            if(fog){
                PushToConsole("FogEnable 1");
                fog = false;
            } else {
                PushToConsole("FogEnable 0");
                fog = true;
            }
        }


if(GetAsyncKeyState(VK_NUMPAD2)&1){
            if(speed){
                PushToConsole("BaseMoveAccel 3000.000000");
                PushToConsole("StartAccel 500.000000");
                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 3000.000000");
                PushToConsole("MaxAccel 3000.000000");
                PushToConsole("AccelInc 3000.000000");
                PushToConsole("WalkVel 3000.000000");
                PushToConsole("FRunVel 3000.000000");
                PushToConsole("BRunVel 3000.000000");
                PushToConsole("SRunVel 3000.000000");
                PushToConsole("DuckVel 90.000000");
                speed = true;
            }
        }

if(GetAsyncKeyState(VK_NUMPAD3)&1){
            if(tracers){
                PushToConsole("ShowFirePath 0");
                tracers = false;
            } else {
                PushToConsole("ShowFirePath 1");
                tracers = true;
            }
        }
Quote Originally Posted by jonnyboy9985 View Post
Excuse me what? How am I wrong? Can you atleast help me instead of just like you know... Just saying "This is wrong" and I am learning C++ and this is practice. Btw if this was a failed attempt at raising your postcount, you are doing really good xD
you wrong cuz your a newb who copied and paste and dosnt know shit about this so please just look for a site u can LEARN c++ NOT COPY (i may sound mean but its the truth deal with it)
Quote Originally Posted by yoyoitsman View Post
you wrong cuz your a newb who copied and paste and dosnt know shit about this so please just look for a site u can LEARN c++ NOT COPY (i may sound mean but its the truth deal with it)
noted... read here for an opinion on my next course of action please

http://www.mpgh.net/forum/207-combat...ml#post2434236
Posts 3134 of 34 · Page 3 of 3
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?