One more problem: (sorry for 2x post)
I get this:
Code:
Line 2: [Error] (2:24): 'BEGIN' expected in script C:\Program Files\SCAR 3.15\Scripts\RS Scripts\Bank(proto).scar
When I compile this:
Code:
program Bank;
{.include SRL/SRL.scar};
var
x,y: integer;
const
WhichBank = 'db';
begin
if FindSymbol(x, y, 'bank') then
MMouse(x, y, 10, 10);
Wait(1000+random(50));
Mouse(x, y, 0, 0, true);
Flag;
OpenBankFast(WhichBank);
DepositAll;
Wait(1200+random(50));
CloseBank;
end.
I took out the procedure because I only wanted it to bank. It really never worked, though it seems like it will eventually...