Additional Info
|
Compile this code in C++ |
Additional Info
|
Those are just tiny things and it does work for such a simple program. It comes out pretty small as well with just 17.4kb (64-bit) and 12.0kb (32-bit). A nice base to build upon to if you like to fiddle around a bit. Anyways, here is the cleaned up version i did compile from: g++ -o clicker.exe main.cpp -Wall -s -O3 |
Additional Info
|
Thanks for the feedback, I never though about what the program needed and didn't need, I dug it out after a PC format and 3 months since last touching it. |
Additional Info
|
Yeah leaving your code lying around doing nothing can be good. I just "love" to come back to old code, not understanding and having to rewrite it :P |
Additional Info
|
Bonus stuff I've just finished cleaning up: |
Additional Info
|
Really cool, those should be combined into one tool that can do both. I tried that with the clicker in a way that it supports toggled and untoggled mode. Here is the code: http://pastebin.com/6cyPgLRf |
Additional Info
|
Now you've gone and done it, can't make head nor tails of the code just by looking at it. |
Additional Info
|
OK, this way of trapping the whole loop for key checks annoyed me more than i would have thought. The problem with those traps is that you could not do that for more than one key and it stops the rest of the program. While trying to create that simple clicker with the main Windows methods i encountered that problem again. |
Additional Info
|
Yay! Thank you, it actually helped me in a different way than it was intended to, but, hey, that's a good thing :D |