Simba Code:
if (not invfull) then
begin
case CoalBag of
'yes': begin case BarType of
'steel': WithdrawItem(coal, 'dtm', 8, 'al', [3]); {8}
'mith' : WithdrawItem(coal, 'dtm', 14, 'al', [3]); {14}
'addy' : WithdrawItem(coal, 'dtm', 16, 'al', [3]); {16} {coal}
'rune' : WithdrawItem(coal, 'dtm', 14, 'al', [3]); {14}
end;
end;
'no': begin case BarType of
'steel': WithdrawItem(coal, 'dtm', 0, 'al', [3]); {all}
'mith' : WithdrawItem(coal, 'dtm', 20, 'al', [3]); {20} {coal}
'addy' : WithdrawItem(coal, 'dtm', 18, 'al', [3]); {18}
'rune' : WithdrawItem(coal, 'dtm', 0, 'al', [3]); {all}
end;
end;
end;
Wait(400+Random(100));
closebank;
end;