Log in

View Full Version : SMART Autoclicker



dad0
03-25-2008, 02:03 PM
I'm looking for autoclicker that will pick certain color and click on it three times in a second.
Just basic autoclicker which would use SMART plugin so i can work other things on my pc while autoing.

I was looking on forum but i can't find this kind of script, I understand it's not hard to make script, but i don't have any idea how to work in SCAR.

So if anyone has any links to similar script or would be so nice to type it here, I would be thankfull.

Peace.

:rolleyes:

gerauchert
03-25-2008, 02:09 PM
umm why would you need to click something three times a second in RS? unless you are trying to get your account banned... :rolleyes:

dad0
03-25-2008, 02:11 PM
I need it for some program testing.

Could you write this script?

JuKKa
03-25-2008, 02:12 PM
Var
X, Y, Mark: Integer;

Begin
Repeat
Wait(1);
If(IsMouseButtonDown(True))Then
Begin
Mark := GetSystemTime;
If(IsMouseButtonDown(True))Then
Repeat
Wait(1);
Until( Not IsMouseButtonDown(True) )
Else Continue;
Wait(100);
If(IsMouseButtonDown(True))Then
Repeat
Wait(1);
Until( Not IsMouseButtonDown(True) )
Else Continue;
Wait(100);
If(IsMouseButtonDown(True))Then
Repeat
Wait(1);
Until( Not IsMouseButtonDown(True) )
Else Continue;
GetMousePos(X, Y);
Writeln('Color Picked: '+Inttostr(GetColor(X, Y))+' at (' +Inttostr(X)+', '+Inttostr(Y)+ ')');
End;
Until(False);
End.

this?

gerauchert
03-25-2008, 02:22 PM
Unless it is going to be for RS, SMART will not be an option...

Jukka I think he wants it to find a color then click it three times, atleast i think...

so:


Program New;

var
x,y,i: Integer;

const
Color = 0; // put your color here

begin
repeat
if(FindColor(x,y,Color,0,0,700,700))then // I dont know what coordinates you need...
for i := 0 to 2 do
begin
ClickMouse(x,y,True);
Wait(333);
end;
until(IsFKeyDown(1)); // Hit F1 to stop the script
end.

dad0
03-25-2008, 02:23 PM
program FrugooScape;
{.include SRL/SRL.scar}

const
TargColor = ; //color of the ranging target(yellow dot in center)
RandomWaitTime = ; //a random amount of time to wait
TimesToClick = ; //amount of times to click the target
dodebug = 2;


Procedure Debug(reason:string); //
begin
case DoDebug of
1: Wait(1);
2: Disguise(reason);
end;
end;


var
i, x, y : integer;


procedure Report;
var TempI:Integer;
begin
ClearDebug;
TempI:= i;
case Random(3) of
0: debug(''+IntToStr(TempI)+' times clicked.');
1: debug(''+TimeRunning);
2: Disguise('iTunes');
end;
Wait(1);
end;

procedure findnclick;
begin
i:= 0;
begin
repeat
i:= i + 1;

if(FindColor(x,y,targcolor,100,100,800,800)) then //finds targetcolor
begin

wait(300 +(randomwaittime)) //this is where the waittime comes in
movemousesmooth(x,y);
report;
wait(500+random(100)); //another random wait
clickmouse(x,y,true);
end;
until(not(findcolor(x,y,targcolor,100,100,800,800) ));
end;
end;

begin
cleardebug;
setupsrl;
case Random(1) of
0: Disguise('iTunes');
end;
repeat
findnclick;
until(false);
end.

I mean't something more similar to this but it has to use SMART so i can do other things while runing this script.

dad0
03-25-2008, 02:25 PM
Unless it is going to be for RS, SMART will not be an option...

Jukka I think he wants it to find a color then click it three times, atleast i think...

so:


Program New;

var
x,y,i: Integer;

const
Color = 0; // put your color here

begin
repeat
if(FindColor(x,y,Color,0,0,700,700))then
for i := 0 to 2 do
begin
ClickMouse(x,y,True);
Wait(333);
end;
until(IsFKeyDown(1)); // Hit F1 to stop the script
end.


Ok, this is quite good but what to include.

Could you write me whole thing with includes at the top.

gerauchert
03-25-2008, 02:32 PM
Ok, this is quite good but what to include.

Could you write me whole thing with includes at the top.

Ok. Unless this is for the LEGIT RUNESCAPE CLIENT you CANNOT USE SMART. And if this is for the legit rs client then you WILL BE BANNED.

What else did you need? What includes are you talking about? That script I wrote you will run as it is... just need to imput the color you want or the coords you want.

dad0
03-25-2008, 02:38 PM
Ok. Unless this is for the LEGIT RUNESCAPE CLIENT you CANNOT USE SMART. And if this is for the legit rs client then you WILL BE BANNED.

What else did you need? What includes are you talking about? That script I wrote you will run as it is... just need to imput the color you want or the coords you want.

I meant this:

{.include SRL/SRL/Misc/Smart.scar}

and this

SmartSetupex(154, False, False);
SetTargetDC(SmartGetDC);

ShowerThoughts
03-25-2008, 02:46 PM
he wants to autoclick on a rs private server... sad

gerauchert
03-25-2008, 02:47 PM
I meant this:

{.include SRL/SRL/Misc/Smart.scar}

and this

SmartSetupex(154, False, False);
SetTargetDC(SmartGetDC);

Well its your account, do with it as you will i guess :rolleyes: good luck having it last more than one time logging in... but ask and you shall recieve.

Program New;
{.include SRL\SRL\misc\smart.scar}
{.include SRL\SRL.scar}

var
x,y,i: Integer;

const
Color = 0; // put your color here
World = 154; // world number

begin
SmartSetupex(World, False, False);
SetTargetDC(SmartGetDC);
repeat
Wait(100);
until(SmartReady);
SetupSRL;
repeat
if(FindColor(x,y,Color,msx1,msy1,msx2,msy2))then // I dont know what coordinates you need...
for i := 0 to 2 do
begin
ClickMouse(x,y,True);
Wait(333);
end;
until(IsFKeyDown(1)); // Hit F1 to stop the script
end.

richk1693
03-25-2008, 05:42 PM
he wants to autoclick on a rs private server... sad

Why is that sad? It's still runescape, and its still cheating.

Narcle
03-25-2008, 06:03 PM
I need it for some program testing.

Could you write this script?

I meant this:

{.include SRL/SRL/Misc/Smart.scar}

and this

SmartSetupex(154, False, False);
SetTargetDC(SmartGetDC);
SMART is not a browser nor a Virtual Machine type program. You can not do program testing like I think you want it to do. Its only meant to run Runescape nothing else.
If you want to test your program while running other things set up a Virtual Machine.


he wants to autoclick on a rs private server... sad
I don't believe he said that anywhere...

dad0
03-25-2008, 06:06 PM
SMART is not a browser nor a Virtual Machine type program. You can not do program testing like I think you want it to do. Its only meant to run Runescape nothing else.
If you want to test your program while running other things set up a Virtual Machine.


I don't believe he said that anywhere...

Ok, is there any tutorial how to set up VM?

Ty for the script one who posted.

gerauchert
03-25-2008, 06:31 PM
Ok, is there any tutorial how to set up VM?

Ty for the script one who posted.

yw, and look in the section for virtual machines... i think there is a whole section devoted to stuff about them. And there is like 2-3 tuts on setting them up. ;)

KoKouKo
03-25-2008, 09:33 PM
yw, and look in the section for virtual machines... i think there is a whole section devoted to stuff about them. And there is like 2-3 tuts on setting them up. ;)
the tuts are in teh setting up your computer to auto section under tutorial island and the section for vms and other computer related concerns is under srl faq, if anybody wanted to know

dad0
03-26-2008, 07:06 AM
Ok, ty guys, now i understand how SMART thingy works.