Ok so I fixed the part where its eating my entire inv, but now Im trying to make it run my Tobank, Bank, and ToGoblin procs but its saying (77:9): Unknown identifier 'ToTheBank'
Simba Code:
Procedure EatTuna;
Var
I:Integer;
test: boolean;
Begin
GameTab(tab_Inv);
for I := 1 to 26 do
Begin
test := (HPPercent < 75) and (LoggedIn);
If(not(test)) then
Exit;
if test then
If InvEmpty then
Begin;
ToTheBank;//
Bankit;///////The Procedures Im trying to run but its saying Unknown identifier
ToGobs;/////
End;
Begin;
InvMouse(I, 3);
if IsUpText('Tuna') then
Begin
Repeat
ClickMouse2(True);
Wait(RandomRange(1500, 2000));
until (HPPercent > 90);
End;
End;
End;
End;