Hey guys!
So i'm pretty much making my first script, and I need some help.
I'm trying to make a script that just mines iron ore till full inv and then drops inventory.
Simba Code:
program powerminer;
{$i srl/srl.simba}
Procedure MineRock;
var
x, y : integer;
begin
if FindColorSpiralTolerance(x, y, 2305870, 1, 1, 511, 336, 10) or
FindColorSpiralTolerance(x, y, 1845058, 1, 1, 511, 336, 10) or
FindColorSpiralTolerance(x, y, 2174282, 1, 1, 511, 336, 10) then
begin
MoveMouse (x, y);
if IsUpText('ine Rocks') then
MoveMouse (x, y) ;
ClickMouse(x, y, 1);
wait(4000);
end;
end;
begin
repeat
MineRock;
until(false);
end.
^this is what i have so far.
So, there are still a few problems.
1: When there are ores on the ground it clicks on those aswell, so it doesn't seem to use the uptext.
2: how do you script droping a full inv, since I don't think I can use "DropInv" on a random private server. (2006 based)
Thanks for the help!