--------------------------------------|
|------->P1ngs Anywhere A1cher<--------|
|--------------------------------------|
# Of Alchs 1918
XP Gained: 124670
Levels Gained: 1
Breaks Taken: 0
Time running: 01h 46m 23s
|--------------------------------------|
Very nice once again and ya i just changed a few wait timers to get it working smoothly for me.
Here is what I changed:
Simba Code:
procedure ClickAlch;
var
ri,Counter: Integer;
begin
ri := RandomRange(-4,4);
if not LoggedIn then
TerminateScript;
if GameTab(Tab_Magic) then
begin
Wait(RandomRange(100,150));//added this
if FindDTM(Alchemy,x,y,MIX1,MIY1,MIX2,MIY2) then
begin
Mouse(x,y,ri,ri,mouse_Left);
WriteLn('Successfully clicked alch symbol');
GetMousePos(P.x,P.y);
repeat
Inc(Counter);
Wait(RandomRange(100,150));//changed this
until(GameTab(Tab_Inv)) or (Counter > 10);
end else
begin
WriteLn('Didn''t find the alch symbol');
TerminateScript;
end;
end else
WriteLn('Not in magic tab @ClickAlch');
end;
aswell on line 127 changed it to:
Simba Code:
until(Counter > 30);// i made 30 instead of 15 to help solve cant find error
Just incase other people have the same problem
nice script.