
Originally Posted by
riwu
Also tell me at what time yohojo actually call MarkTime in the loop, not going watch the whole vid

Video at current time:
http://www.youtube.com/watch?feature...Wrm_DE#t=2047s
I have mean output, at debugbox is
Code:
Error: Exception: Type Mismatch at line 20
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap]
it says that some of dtms, btmps are not freed, and i dont use DTM, Btmps at the time.
EDIT:Probably that srl, because I'm using one miner at the time, and opened new Simba, in new window. and as you asked about to check updates, extensions aren't enabled. strange 'cuz in first windows where mining scripts works, it works well, and updates are done there.
EDIT2: Did update still same output.
Edit3: if i try only to compile script it compiles well, but if i Start the script only then it gives output like that
EDIT4: Maybe full script will help to solve problem?
SCAR Code:
program test;
{$i SRL/SRL.simba}
Procedure Antiban;
Begin
Case Random(3) of
0:Begin GameTab(23); end;
1:Begin GameTab(12); end;
2:Begin GameTab(1); end;
3:Begin GameTab(11); end;
end;
end;
Function ChopTree:boolean;
var x, y, invChange, t: Integer;
begin
invChange:= InvCount + 1;
If FindObjCustom(x, y, ['hop'], ['1252893', '1779750'], 10) then
Begin
Case Random(1) of // Random cut method 50/50
0:Mouse(x, y, 5, 5, true); //left click
1:Begin
Mouse(x, y, 5, 5, false);//right click + choose option
WaitOption('Chop', 500);
End;
end;
MarkTime(t);
Repeat
Antiban;
Wait(100 + Random(50));
if(InvCount=InvChange) then
begin
WriteLn('We got one!');
end;
until (InvCount=InvChange) OR (TimeFromMark(t) > 6000);
end;
end;
//-----
begin
SetupSRL;
ChopTree;
end.