hotkey helpI heys, i need some help. My hotkey will turn on but it will not turn my feature back off... ive tried everything, I think....
Originally Posted by JusCaus I heys, i need some help. My hotkey will turn on but it will not turn my feature back off... ive tried everything, I think.... why didnt u ask me i could have helped u ..i had the same proplem try this: Code: if(GetAsyncKeyState(VK_F3) &1) { feature= !feature; } instead of this...(i think u were using) Code: if(GetAsyncKeyState(VK_F3) &1) { feature= true; }
Originally Posted by Assassin's Creed why didnt u ask me i could have helped u ..i had the same proplem try this: Code: if(GetAsyncKeyState(VK_F3) &1) { feature= !feature; } instead of this...(i think u were using) Code: if(GetAsyncKeyState(VK_F3) &1) { feature= true; } ahh actually i was going this... if(plyrs) { PTC("WireFrame 1") else PTC("WireFrame 0") and i used like plyrs = !plyrs
Originally Posted by JusCaus ahh actually i was going this... if(plyrs) { PTC("WireFrame 1") else PTC("WireFrame 0") and i used like plyrs = !plyrs yup this is the right one...except the playerwire frame is "WireFrameModels" something like that i think....but i tried WireFrame it wasnt working but this way of doing hotkeys is right