Fix for InPin does not handle "PIN is pending" message
Really makes it unfun for my botters to withdraw food to fight with, when the PIN message says "PIN pending, coming in 5 days", and SRL doesn't handle it. :(
Fixed copy for SRL:
Simba Code:
function BankScreen: Boolean;
var
c: Integer;
begin
if (CountColor(2070783, MSX1, MSY1, MSX2, MSY2) > 2000) then
begin
MouseBox(112, 159, 210, 196, 1);
c := GetTimeRunning + 45000;
while (not BankScreen) and (GetTimeRunning < c) do
Wait(50);
Wait(RandomRange(100, 150));
end;
Result := FindTextTPA(4106994, 20, 20, 22, 400, 45, 'Bank', upchars, Nothing);
end;
Countcolor and Mousebox were both changed. Try it and see, it should work fine now.
Reflection fix: https://github.com/HarryS/srl-reflec...01e0db0b6ec08b (already made pull request (and accepted by Pyroryan :D), just throwing it here if anyone wants to try it out)
Thanks!