Ya that's true :P right now I have this function for Chopping:
Simba Code:
Function ChopDownMaple: boolean;
var
x, y, TreeCounter, PlusThree: Integer;
begin
if P07_FindObjCustom(x, y, ['Cho', 'own','p d'], [20860, 21377, 19325], 10) then
begin
case Random(20) of
0..15: begin
Wait(RandomRange(100,250));
ClickMouse2(mouse_left);
Wait(RandomRange(9000, 11000));
end;
15..20:
begin
Wait(RandomRange(100,250));
ClickMouse2(mouse_right);
P07_WaitOptionMulti(['hop', 'own'],RandomRange(200,300))
Wait(RandomRange(9000, 11000));
end;
end;
if TimeFromMark(TreeCounter) > 5000 then
begin
AntiBan;
Wait(RandomRange(1500,3000))
Marktime(TreeCounter);
end;
end;
end;
Will this look random enough for you?
Ok thx, I will have a look at that.
But, I got another question again
. Does this procedure look good for Birds nest?
Simba Code:
procedure BirdsNest;
var
x ,y: Integer;
begin
if P07_FindObjCustom(x, y, ['ake'], [2569530, 2569530], 5) then
begin
Wait(RandomRange(1000,1500));
ClickMouse2(mouse_left);
end;
end;