Alright so, Im brand new to this and I really dont know much but anyway..
I had banking working last time I was testing things and now when ever I try to run/test something the mouse goes to the left ish side of the screen and stops, and thats all it does when I try to make it find the bank booth, any help?
Simba Code:
program BankTesting;
{$i srl/srl.simba}
{$i sps/sps.simba}
Procedure BankAndWithdraw;
Var
x, y: integer;
Begin
SetUpSRL;
if FindObj(x, y, 'ank', 3625827, 15) then
Mouse(x, y, 2, 2, true);
Wait(3000);
withdrawex(1, 0, 25, ['essence', 'pure']);
end;
begin
SetupSRL;
ActivateClient;
BankAndWithdraw;
end.