Can anyone tell me if i'm using it wrongly or if it's broken and i better write one myself?
SCAR Code:
Procedure FillPouches;
Begin
if(not(LoggedIn))then
Exit;
ClickPouch('Giant', 'Fill', 20);
if(not(invfull))then
begin
case RuneRoute of
0: begin
BankOpenZanaris;
WithdrawEssence;
end;
1: UnNoting;
end;
end;
ClickPouch('Small', 'Fill', 20);
ClickPouch('Medium', 'Fill', 20);
ClickPouch('Large', 'Fill', 20);
if(not(invfull))then
begin
case RuneRoute of
0: begin
BankOpenZanaris;
WithdrawEssence;
end;
1: UnNoting;
end;
end;
end;