
Originally Posted by
LightningRod
Ey Ey Capt'n
Here, I just wrote you a superheater which is much better than an auto clicker 
Simba Code:
program new; // * Nats in slot 1
{$DEFINE SMART} // * Coal at top of invenory, ore at bottom
{$i srl-6/srl.simba} // * Bank preset # 1
// * Spell on actionbar slot 1
const
LAST_ORE_SLOT = 27; { Last slot where ore disappears }
BANK = BANK_CHEST_LUMBRIDGE;
procedure doBanking();
begin
if bankScreen.open(BANK) then
begin
bankScreen.clickButton(BANK_BUTTON_PRESET_1);
tabBackpack.waitWhileLocked();
end;
end;
procedure doSuperheating();
begin
repeat
tabBackpack.mouseSlot(28, MOUSE_MOVE);
typeByte(VK_1);
if isMouseOverText(['ast']) then
begin
fastClick(MOUSE_LEFT);
tabBackpack.waitForShift(3000);
end;
until (not tabBackpack.isItemInSlot(LAST_ORE_SLOT));
end;
begin
setupSRL();
repeat
doBanking();
doSuperheating();
until false;
end.