SCAR Code:
Const
rockcolor = 854732957;//rock color here {change this right here}
pickaxeequiped = True;////True if pickaxe is equiped otherwise dont touch
Procedure findore;
Begin
repeat {loop here}
wait(2000)
if (FindColorSpiralTolerance(x, y, rockcolor, MSX1, MSY1, MSX2, MSY2,10)) Then {changed this}
begin
Mmouse(x,y,1,1)
If IsUpText('ine') then {put this right here}
begin
wait(4000)
Clickmouse(x,y,false)
wait(1000)
ChooseOption(x,y, 'ine');
wait(3000+random(4000))
end;
end;
until(invfull) {loop here}
End;