nice first script this
SCAR Code:
case Random(30) of
0: TypeSend('Bored, notice how bored I am..');
1: MMouse(0, 0, 762, 499);
2: MMouse(0, 0, 762, 499);
3: MMouse(0, 0, 762, 499);
4: MMouse(0, 0, 762, 499);
5: MMouse(0, 0, 762, 499);
6: MMouse(0, 0, 762, 499);
7: MMouse(0, 0, 762, 499);
8: MMouse(0, 0, 762, 499);
9: MMouse(0, 0, 762, 499);
10: MMouse(0, 0, 762, 499);
can be changed to
SCAR Code:
case Random(30) of
0: TypeSend('Bored, notice how bored I am..');
1, 2, 3, 4, 5, 6, 7, 8, 9, 10: MMouse(0, 0, 762, 499);
its alot less typing in the future
line 193 says
SCAR Code:
//-----------------------------Banking the Willows----------------------------\\
.
SCAR Code:
if (FindDTM(FullVial, x, y, 151, 210, 595, 281)) then
begin
that should be
SCAR Code:
if (FindDTM(FullVial, x, y, 151, 210, 595, 281)) then
begin
.
SCAR Code:
if (FindDTM(FullVial, x, y, 547, 206, 734, 464)) then
begin
if IsUpText('(3)') then
Mouse(x, y, 5, 5, false);
ChooseOption('Use');
end else
i think should be
SCAR Code:
if (FindDTM(FullVial, x, y, 547, 206, 734, 464)) then
begin
if IsUpText('(3)') then
begin
Mouse(x, y, 5, 5, false);
ChooseOption('Use');
end;
end else