Just wondering if somebody could post a yew/magic log script
Just wondering if somebody could post a yew/magic log script
This isn't a very good request. For all I know, you want a script that will take magic logs out of your bank and drop them on the ground. That's a script that involves magic logs, thus it is a "magic log script" and fulfills your request.
More details please!
Now I'm only going off of his posts, but KeepBotting's iOak script is incredibly modular and can be re-written to do yew's and magic's.
If you want to start getting into scripting maybe you could look into that.
And since I haven't seen many welcoming posts addressed towards you... Welcome to the forums! :D
Done! This request can be closed. Just start at Burthorpe and set magic logs to preset 1.
Simba Code:program new;
{$DEFINE SMART}
{$i srl-6/srl.simba}
begin
setupSRL();
repeat
bankScreen.open(BANK_TABLE_BUTTHORPE);
bankScreen.clickButton(BANK_BUTTON_PRESET_1);
tabBackpack.dropItems();
until false;
end.
Ahh yes, thanks for the feedback. I've taken into account your suggestions and updated the script.
Simba Code:program new;
{$DEFINE SMART}
{$i srl-6/srl.simba}
begin
setupSRL();
bankScreen.open(BANK_TABLE_BURTHORPE);
bankScreen.withdraw(1, WITHDRAW_AMOUNT_ALL, ['Magic logs'], True);
bankScreen.close();
tabBackpack.waitWhileLocked();
tabBackpack.dropItems();
end.