Where can i find ClickToContinue?
I want to modify it but i can't find it.
Where can i find ClickToContinue?
I want to modify it but i can't find it.
~Hermen
SCAR Code:{*******************************************************************************
function ClickContinue(Click, Wait: Boolean): Boolean;
By: Nielsie95
Description: Returns true if ClickToContinue was found.
*******************************************************************************}
function ClickContinue(Click, Wait: Boolean): Boolean;
var
i, x, y: Integer;
Colors: array [0..1] of Integer;
begin
Colors[0] := 16711680;
Colors[1] := 16777215;
for i := 0 to 1 do
if FindColor(x, y, Colors[i], MCX1, 427, MCX2, MCY2) then
if IsTextAtEx(x -5, y -1, 'Click her', 0, NPCChars, False, False, 0, 2, Colors[i]) then
begin
Result := True;
Break;
end;
if (Result) and (Click) then
begin
Mouse(RandomRange(x, x +130), RandomRange(y +3, y +7), 2, 2, True);
if Wait then
ChatWait;
end;
end;
In SRL\SRL\Core\AntiRandoms\ChatRandoms.Scar
-Ashur
Exam period.
SRL\Core\AntiRandoms\Common.scar
![]()
Thanksi didn't know it was an ChatRANDOM lol but yeah thanks!
Dudes i am making an tut runner but 1 time this thingy hovers Continue
so i thought clicktocontinues use the word 'ontinue' to find it but now i see it uses
'lick here', i am confused why does it hovers and clicks clicktocontinue?
~Hermen
Yes Hermpie, I always got that aswell Thats Why I make A DTM of it.
It says walk to continue and hovers over there![]()
Here
SCAR Code:Function C2C : Boolean;
Var
Click2C, cx, cy : Integer;
Begin
Click2C := BitmapFromString(26, 7, 'beNqtkTEKADAIA+//n047FR' +
'ETHCpOF1FiENz+WCo98kYw/EmV4yHmqFMV1zK9pU1qJ+Vt2ZRLR2t' +
'3TVIMYsrrAJubOcc=');
Begin
Result := FindBitmap(Click2C, cx, cy);
end;
end;
Procedure ClickToContinueX;
Var
CX, CY : Integer;
Begin
If C2C Then
Begin
Mouse(cx, cy, 10, 1, True);
WriteLn('Clicked');
Repeat
Wait(1)
Until(Not FindBitmap(Click2C, cx, cy))
end;
end;
Thanks, i modified it bymyself because you yet made this and i already knew it wasn't compiling LOL.
~Hermen
There are currently 1 users browsing this thread. (0 members and 1 guests)