I wasn't talking to you. I meant the guy that posted above you. I fixed my post though. It was because he posted before you and then I was posting. Then you posted. So it looked like my post was directed to you.
I wasn't talking to you. I meant the guy that posted above you. I fixed my post though. It was because he posted before you and then I was posting. Then you posted. So it looked like my post was directed to you.
@Crash:
I now have this
Would that work?
Oh rofl it really looked like you were talking to me.
And it would be more like this :
Code:
if(GetAsyncKeyState(VK_F6)&1){
toggle = !toggle;
if(toggle){
//Do whatever
} else {
//Do if it's not on
}
}
Sorry about that mix-up.
The "Quick Reply" button isn't working. Anyways, thanks.
That is equivalent code and would be optimized.
[php]if (keyCode == VK_F6)
{
Autoshoot ^= 1;
if (Autoshoot)
;
else
;
} [/php]
well i still think you should use google
Originally Posted by HL-SDK
That is equivalent code and would be optimized.
[php]if (keyCode == VK_F6)
{
Autoshoot ^= 1;
if (Autoshoot)
;
else
;
} [/php]