In Includes\SRL\SRL.scar change MouseSpeed := <number>
To
MouseSpeed := somewhere between 1 and 50, 1 is slowest, 50 is superfast, i recommend 20/25 something like that.
SCAR Code:
program AutoSeller;
{.include SRL\SRL.scar}
var s: Integer;
const
MSpeed=20; //Set MouseSpeed here (1 is slowest, 50 Fastest, recommend 20.)
Sells=100; //Set here how much times to click 'Sell 50'
procedure DoTheSell;
begin
Mouse(587, 229, 1, 1, false);
Wait(250+random(500));
ChooseOption('Sell 50');
end;
begin
SetUpSrl;
MouseSpeed := MSpeed;
repeat
s := s+1
DoTheSell;
until(s = Sells)
end.
Does that work?