Well I'm finally updating my RangeGuilder to do spam clicking of the targets. However, even though I created a function to click fast, it still doesn't spam click fast enough.
Here is what I'm using:
Simba Code:
{* This is a straight rip of Mouse(), but just clicks a lot faster *}
procedure SpamClickMouse(left: Boolean);
begin
ClickMouse2(left);
end;
And I'm calling it like this (it's in a loop):
Any suggestions on either getting it to click faster or another method of speeding up the shooting process?
Thanks!