So, if your using a normal butler it doesnt take into consideration that you can only uncert 20 logs rather than 26...
edit: Now it's not recognising it as 20... maybe thats due to firespirits?
fix for ashaman:
Simba Code:
function Determine_Butler: Boolean;
begin
if DemonButler = False Then
Result := Burnnormal else
Result := Burndemon;
end;
function Burndemon;
begin
If (28-Invcount)<=27 Then
TypeSendEx(Tostr(28-InvCount),True) Else
TypeSendEx('26',True);
Result:= True;
Wait(Random(400));
InvMouse(2,Mouse_Move);
Exit;
end;
function Burnnormal;
begin
If (28-Invcount)<=27 Then
TypeSendEx(Tostr(28-InvCount),True) Else
TypeSendEx('20',True);
Result:= True;
Wait(Random(400));
InvMouse(2,Mouse_Move);
Exit;
end;
fix for everyone else:
Go to line 769
change:
to