First trial alcher (first time writing, looks more of an auto clicker to me)
So I basically had like 30 minutes spare so I decided to try and write my own alcher. Here is the code (it's pretty simple and probably bad :P)
program alcher;
{$I SRL-6/SRL.simba}
procedure MovemMouse();
begin
mouse(592, 430, 5, 5, mouse_move);
writeLn('we moved the mouse');
wait(randomrange(1000, 3000));
end;
procedure clicker();
begin
fastclick(mouse_left);
wait(randomrange(700, 1300));
end;
var
i : Integer;
begin
for i:=0 to 100 do
begin
clicker ();
end;
end;
procedure writeline();
begin
cleardebug;
writeln(' we are successful');
end;
begin
movemmouse();
clicker();
writeline();
end.
Basically you have to move the item your alching in the backpack slot which the 'High level alchemy' spell is and it auto clicks for you. Am I going on the right track? I'll probably delve into it more when i get more time and develop it.
Any help or advice would be greatly appreciated :)