ok so i want to make a script for an rsps but when i do this code
my mouse teleports to the monster but i want to make it move smoothlyCode:program new;
{$i SRL/SRL.simba}
procedure ClickMonster;
var x, y: Integer;
begin
if
FindColor(x, y, 722181, msx1, msy1, msx2, msy2) then
MoveMouse(x, y);
Wait(500);
Mouse(x, y, 0, 0, true);
end;
begin
setupsrl;
ClickMonster;
end.
how can i do that

