SCAR Code:
Procedure TinProcess;// Runs the process that mines tin, then when your inventory is
begin // full then it drops the tin depending on where your pickaxe is
repeat //
if not(LoggedIn) then LogInPlayer;
FindNormalRandoms;
TinMProcess;
i:=i + 1;
until(InvFull);
begin
MMouseItem(1);
if (IsUpText('icka')) then
begin
DropItem(2);
DropItem(3);
DropItem(4);
DropItem(5);
RanWait(250+random(700));
DropItem(6);
DropItem(7);
DropItem(8);
DropItem(9);
DropItem(10);
DropItem(11);
RanWait(250+random(700));
DropItem(12);
DropItem(13);
DropItem(14);
DropItem(15);
DropItem(16);
DropItem(17);
RanWait(250+random(700));
DropItem(18);
DropItem(19);
DropItem(20);
DropItem(21);
DropItem(22);
DropItem(23);
DropItem(24);
DropItem(25);
DropItem(26);
DropItem(27);
DropItem(28);
end else
begin
RanWait(250+random(700));
DropAll;
end;
end;
end;
if some one could lead me to a tutorial on how to make this smaller, that would be much apreciated =)