DeathByMoogles@
i encourage ppl to try a little bit programming.
a lot of ppl like u ask me questions, and i give them specific solutions, after they download autohotkey and look at the script to edit, they will see how easy it is, and start making their own little bot or hotkeys
even ppl are not using ahk, i still discuss with them from time to time, like swords, alex..etc
we all start with very basic and expand our knowledge from asking and reading
and about the difficulty level of changing the speed is certainly easy
let me explain a little what the following means
Code:
random, rand, 500, 1000
it will output a random number from 500-1000
which in my code, i define the delay of each click according to that number
so when i say
Code:
random, rand, 100, 500
what it meant is, between every click/pixel color search (the whole function takes less than 30ms to run 1 time), i want to have a delay of 100-500mil-second
there shouldnt be any downside, just think of u are the one clicking the mouse, does it matter if u click 4 times per sec VS. 2 times per sec? probably not in attacking speed, but the reaction speed increased
the only negative part i can think of is, if CO records delay between clicks, it will look too un-realistic for a human to send keystrokes few times per sec constantly. thats why the default of COELSE is around 1 sec