Jump to content
Incommodious

Silent?

Recommended Posts

Is there any kind of silent mouse fuction that will run the script and click stuff in the backround on a client while its minimized and while you are say on facebook or something? If so this is the script i need changed.

 

[scar] program New;

var x,y :Integer;

begin

getclient.activate

repeat

If FindColor(x,y,2016511,225,112,1182,659) then

begin

WriteLn('Found Money');

movemouse(x,y+45);

wait(500)

clickmouse(x,y+45,mbLeft);

wait(550)

WriteLn('Got Money');

end;

until(false) ;

end.

[/scar]

Link to comment
Share on other sites

No, only if you're using SMART for RS2. When a window is minimized, it isn't redrawn. So essentially, even if it were possible to send silent input events to the window with SCAR, it would still have to be at least on the desktop. I'm not entirely sure if it's possible to force a window that isn't visible because it's covered by other windows to redraw, but I think it is...

Link to comment
Share on other sites

SMART's functionality is a special case. Any applet loaded into it you can silent mouse to. But it is made specifically for runescape. However if you edited the source code, you could make it load any java applet*

 

But that's it. Just java applets like Runescape...

 

Well again, if you where to mess with SMART's source. You would need to have your "game" or whatever your trying to make your bot for, an actual .jar executable. which unfortunately is ONLY java. So if it isnt a java game then you may not do this.

Link to comment
Share on other sites

Well again, if you where to mess with SMART's source. You would need to have your "game" or whatever your trying to make your bot for, an actual .jar executable. which unfortunately is ONLY java. So if it isnt a java game then you may not do this.

 

I made a similar point, but I forgot to mention the .jar part. A java applet is basically a .jar or other java file? embedded into a web page. I would imagine SMART source could also be modified to load a jar off of your computer as well though.

Link to comment
Share on other sites

Do you think there is going to be any type of that any time soon?

 

Once Freddy makes new silent mouse, and keyboard functions. Until then no.

 

Edit: Darn Freddy beat me to it xD...

 

Yeah its going to use message sending to the window somehow, and it might not work for games. But for web browsers it SHOULD work most definitely i would think...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...