yes its me again..
For some reason it wont deposit ONLY the 15th item and below...I want it to click the 15th item and store all...I DONT want it to store anything before the 15th item...so this is my procedure but it keeps doing the following;
It clicks store all for the first item in the inventery , THEN it stores all for the 15th item...but I ONLY want it to store for the 15th item..
Please HELP. AND DONT TEL ME TO READ BANK.SCAR CUZ I READ IT 1`00000 times!
thanks.
heres the procedure thats messes up..
SCAR Code:
procedure Bankit;
begin
if (not(LoggedIn)) then Exit;
FixBank;
case Random(4) of
0: begin
Wait(250 +random(50));
Deposit(15, 28, 3);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
end;
1: begin
Wait(250 +random(50));
Deposit(15, 28, 3);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
end;
2: begin
Wait(250 +random(50));
Deposit(15, 28, 3);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
end;
3: begin
Wait(250 +random(50));
Deposit(15, 28, 3);
Wait(450 +random(100));
WithDraw(1,1,14);
Wait(100+ random(100));
CloseBank;
Myrandom;
end;
end;
end;