hey guys ..i have a small problem..
I want to make my script deposit all the stuff from 15,28 but I dont know how to...I am using this procedure but this what it does is clicks the first item in the inventory then clicks deposits all , then it clicks the 15th item and click deposit all...for some reason its clicking the 1st item and clicking deposit all before it clicks the 15th...can someone help me..
this is the procedure...
SCAR Code:
procedure Bankit;
begin
if (not(LoggedIn)) then Exit;
FixBank;
case Random(4) of
0: begin
Wait(250 +random(50));
MouseItem(15,false);
Deposit(15, 28, True);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
end;
1: begin
Wait(250 +random(50));
MouseItem(16,false);
Deposit(15, 28, True);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
end;
2: begin
Wait(250 +random(50));
MouseItem(17,false);
Deposit(15, 28, True);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
end;
3: begin
Wait(250 +random(50));
MouseItem(18,false);
Deposit(15, 28, True);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
Myrandom;
end;
end;
end;