c++ hotkeys source comparing
what is the working codes of hotkeys
1.THIS SOURCE:
if (GetAsyncKeyState(VK_INSERT) &1) <---- Use "&1"
2.OR THIS SOURCE :
if (GetAsyncKeyState(VK_INSERT) &1) Wallhack = !Wallhack //if bool is true(ON) pressing Insert will make it false(OFF) else if bool is false(OFF) it will make it true(ON)
if(Wallhack) your Wallhack function
{
bla bla bla = bla bla bla; //ON function
}
else
{
bla bla bla = bla bla bla; //OFF function
3.OR THIS SOURCE:
if (GetAsyncKeyState(VK_F1) & 1) TagosPader = (!TagosPader);
if (TagosPader)