
Originally Posted by
ununnilium
background: i used another script to smelt the bars, now i have 20k i need to make into bracelets.
problem: being very new to simba and the whole scripting process in general, can somebody help me skip/disable the ore smelting section, and help me set up the bracelet making part? please and thanks!
The easiest way would probably be to delete this from the main procedure (lines 1086 -1101):
Simba Code:
if FindDTM(GoldOreDTM, x, y, MIX1, MIY1, MIX2, MIY2) then
begin
if Debug then
WriteLN('Found Gold Ore in Inventory, Running to Furnace');
RunToFurnace;
FindFurnace;
FindDTMs(GoldOreDTM, TPA, MIX1, MIY1, MIX2, MIY2);
FilterTPADist(TPA, 30);
GoldBarsCrafted:= GoldBarsCrafted + Length(TPA);
CheckCraftBar;
CraftButton;
Wait(RandomRange(1000, 1500));
end;
Then change line 874 in the banking procedure from
Simba Code:
FindDTM(GoldOreDTM, X, Y, MSX1, MSY1, MSX2, MSY2);
to
Simba Code:
FindDTM(GoldBarDTM, X, Y, MSX1, MSY1, MSX2, MSY2);
so it withdraws the bars instead of the ores.