Log in

View Full Version : Autoclick even i minimized



gamez_1
09-30-2008, 10:39 PM
Is that possible to autoclick, even i minimized the targeted client?! If it yes Color Picked: 16777215 at (123, 260). Just give me a sample : P

P1nky
09-30-2008, 10:53 PM
what do you mean is this for runescape, than yes SMART is capable to do that..

gamez_1
09-30-2008, 11:11 PM
No! not runscape i mean my Fav game, so that i can play other game while the other is autoing or autoclick even i minimized. <.<

cbris
09-30-2008, 11:54 PM
what game?

P1nky
10-01-2008, 12:04 AM
than its not possible to play while minimized sorry.

gamez_1
10-01-2008, 10:17 AM
Awww!!!. Well SMART is only working for runscape 97%. Can i use SMART for other games or anything? ^^

Daniel
10-01-2008, 11:36 PM
Pfft! You guys didn't even answer his question correctly.

It is possible, however, you'll need to download SCAR 3.12c (i think), which has Silent Mouse enabled. Silent mouse is like moving a ghost mouse, not the actual mouse ;) To enable Silent Mouse, go to Tools> Silent Mouse and make sure that it displays a tick to the left. However, if you ever plan on using Silent Mouse in RuneScape, then you'll be banned, since JaGex now detects that feature of SCAR (hence why it was removed in later versions) ;)

Hope this is what you're looking for ;)

MylesMadness
10-01-2008, 11:41 PM
Pfft! You guys didn't even answer his question correctly.

It is possible, however, you'll need to download SCAR 3.12c (i think), which has Silent Mouse enabled. Silent mouse is like moving a ghost mouse, not the actual mouse ;) To enable Silent Mouse, go to Tools> Silent Mouse and make sure that it displays a tick to the left. However, if you ever plan on using Silent Mouse in RuneScape, then you'll be banned, since JaGex now detects that feature of SCAR (hence why it was removed in later versions) ;)

Hope this is what you're looking for ;)Doesn't have off screen color finding

gamez_1
10-03-2008, 09:46 PM
Whoaa! Thank you so much Dan. Its really working. I can autoclick now even i minimized the selected client. By the way Dan can you help me with my script? I searched and still cant find the answer. : ( After this lets close this thread.


program Assuming;
var
x, y: Integer; //How can i run more find color? How does it work?
begin
findwindowtitlepart('Calculator',false); // Must open Calculator
activateclient;
wait(700);
if FindColor(x, y, 16711680, 0, 0, 164, 189) then // Find Color 1
begin
ClickMouse(x, y, True);
ClickMouse(x, y, True);
ClickMouse(x, y, True);
end;
end. //Do i need add end here? then---->
if FindColor(x, y, 255, 0, 0, 65, 100) then // Find Color 2. only the first script works :(
begin
ClickMouse(x, y, True);
ClickMouse(x, y, True);
ClickMouse(x, y, True);
end;
end.
begin
findwindowtitlepart('Notepad',false); // Must open Notepad, Note: other activateclient again ERROR!
activateclient;
wait(700);
if FindColor(x, y, 16777215, 0, 0, 12, 292) then // Find Color 1
begin
ClickMouse(x, y, False);
ClickMouse(x, y, True);
ClickMouse(x, y, False);
end;
end. //Do i need add end here again?---->
if FindColor(x, y, 16777215, 0, 0, 12, 292) then // Find Color 2
begin
ClickMouse(x, y, False);
ClickMouse(x, y, True);
ClickMouse(x, y, False);
end;
end. // Hope you can help me.

MylesMadness
10-03-2008, 10:26 PM
Here you are:
program Assuming;
var
x, y: Integer; //How can i run more find color? How does it work?
begin
findwindowtitlepart('Calculator',false); // Must open Calculator
activateclient;
wait(700);
if FindColor(x, y, 16711680, 0, 0, 164, 189) then // Find Color 1
begin
ClickMouse(x, y, True);
ClickMouse(x, y, True);
ClickMouse(x, y, True);
end;
if FindColor(x, y, 255, 0, 0, 65, 100) then // Find Color 2. only the first script works :(
begin
ClickMouse(x, y, True);
ClickMouse(x, y, True);
ClickMouse(x, y, True);
end;
findwindowtitlepart('Notepad',false); // Must open Notepad, Note: other activateclient again ERROR!
activateclient;
wait(700);
if FindColor(x, y, 16777215, 0, 0, 12, 292) then // Find Color 1
begin
ClickMouse(x, y, False);
ClickMouse(x, y, True);
ClickMouse(x, y, False);
end;
if FindColor(x, y, 16777215, 0, 0, 12, 292) then // Find Color 2
begin
ClickMouse(x, y, False);
ClickMouse(x, y, True);
ClickMouse(x, y, False);
end;
end.

Edit:well I don't know if it works but it complies

Wrycu
10-04-2008, 12:02 AM
Idea:
Install and run VMWare
Install XP on said VMWare
Install SCAR and SRL on the virtual XP system
Run SCAR

This way you keep control over your mouse, but you don't use silent mouse.

I think it could work? Maybe?

gamez_1
10-04-2008, 10:29 AM
Here you are:
program Assuming;
var
x, y: Integer; //How can i run more find color? How does it work?
begin
findwindowtitlepart('Calculator',false); // Must open Calculator
activateclient;
wait(700);
if FindColor(x, y, 16711680, 0, 0, 164, 189) then // Find Color 1
begin
ClickMouse(x, y, True);
ClickMouse(x, y, True);
ClickMouse(x, y, True);
end;
if FindColor(x, y, 255, 0, 0, 65, 100) then // Find Color 2. only the first script works :(
begin
ClickMouse(x, y, True);
ClickMouse(x, y, True);
ClickMouse(x, y, True);
end;
findwindowtitlepart('Notepad',false); // Must open Notepad, Note: other activateclient again ERROR!
activateclient;
wait(700);
if FindColor(x, y, 16777215, 0, 0, 12, 292) then // Find Color 1
begin
ClickMouse(x, y, False);
ClickMouse(x, y, True);
ClickMouse(x, y, False);
end;
if FindColor(x, y, 16777215, 0, 0, 12, 292) then // Find Color 2
begin
ClickMouse(x, y, False);
ClickMouse(x, y, True);
ClickMouse(x, y, False);
end;
end.

Edit:well I don't know if it works but it complies


You got it! Thank you so much for all your helped.


Aww! I still have 1 more problem.



program ThisOne;
var
x, y: Integer;
begin
if FindColor(x, y, 16711680, 0, 0, 75, 137) then // Findcolor 1
begin
repeat
wait(5000);
ClickMouse(x, y, True);
until(false); // What code should i use if the 1st script FindColor, is not there and then continue to another. Note: ClickMouse must keep pressing if the color is there then ----->
end;
begin
if FindColor(x, y, 255, 0, 0, 163, 217) then // FindColor 2
begin
repeat
wait(5000);
ClickMouse(x, y, True);
until(false); // Should i use until(false)?
end;
end. // Hope you all can help me again. ^^

gamez_1
10-05-2008, 08:48 PM
Idea:
Install and run VMWare
Install XP on said VMWare
Install SCAR and SRL on the virtual XP system
Run SCAR

This way you keep control over your mouse, but you don't use silent mouse.

I think it could work? Maybe?


Whats VmWare for? : D

Wrycu
10-07-2008, 02:04 PM
Whats VmWare for? : D

VMware allows you run an Operating System within an Operating System, or a "virtual machine" (VMWare stands for Virtual Machine Ware). You can run any OS within the VMWare, and it's completely seperate from your own OS. But you need relatively high system specs to do it, since it pretty much means you have two Operating Systems running at once.

http://www.vmware.com/products/ws/