
Originally Posted by
Benson
Heyo,
Thanks for the response, I just went through your script and changed some of the wait times around. I was wondering how to fix the double withdraw coal and double fill coal bag occurrence. What part of the script is that in? Good script though, I like how it's layed out, It made it easier for a non-scripter like myself to understand the processes.
Check the CoalToBag part
I think if you change it to this it should work:
Simba Code:
Procedure CoalToBag; { credits to: noname190 and beezkneez for their help. - May not work correctly }
begin
Coal:= DTMFromString('mQwAAAHicY2ZgYBBmZGDgAGIpIJ7BAMFzgVhVVYYh3scUTLMC+TDMiISBAACc8gPH');
Case Coalbag of
'yes':
begin
Banking;
repeat
WithdrawItem(coal, 'dtm', 0, 'a', [3]);
wait(RandomRange(450,500));
until (invfull);
repeat
wait(RandomRange(300,400));
Mouseitem(2, mouse_right);
wait(RandomRange(700,800));
ChooseOption ('ill');
wait(RandomRange(500,600));
until (invcount = 2);
WriteLn('Filled coal bag.');
end;
end;
FreeDTM(Coal);
end;