Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 16:42

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



How background bots working?

Discussion on How background bots working? within the AutoIt forum part of the Coders Den category.

Reply
 
Old 09/12/2015, 09:46   #16
 
Freshek's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
Can you write in English? :P I not understand You. :P
Edit: Ok, finally I understand you. My parameters are good.
Freshek is offline  
Old 09/12/2015, 11:34   #17
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
oh yes sry

FFNearestSpot($SizeSearch

params are wrong....
YatoDev is offline  
Thanks
1 User
Old 09/12/2015, 12:18   #18
 
Freshek's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
Thanks! :>
Freshek is offline  
Old 09/27/2015, 11:58   #19
 
Freshek's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
I have new problem. How to send ControlClick without focus window?
Freshek is offline  
Old 09/27/2015, 18:42   #20
 
mlukac89's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 473
Received Thanks: 104
ControlClick(title, text, controlid, button, 1, x, y)

ControlClick("window title", "", "", "left", 1)

Look in help file
mlukac89 is offline  
Old 09/27/2015, 18:52   #21
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
Quote:
Originally Posted by Freshek View Post
How to send ControlClick without focus window?
Quote:
Originally Posted by mlukac89 View Post
ControlClick(title, text, controlid, button, 1, x, y)

ControlClick("window title", "", "", "left", 1)

Look in help file
he dont need the help file.
YatoDev is offline  
Old 09/27/2015, 19:19   #22
 
mlukac89's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 473
Received Thanks: 104
Oh
mlukac89 is offline  
Old 09/28/2015, 08:12   #23
 
elite*gold: 1908
Join Date: Jan 2013
Posts: 832
Received Thanks: 629
Quote:
Originally Posted by mlukac89 View Post
ControlClick(title, text, controlid, button, 1, x, y)

ControlClick("window title", "", "", "left", 1)

Look in help file
I use this but it always focus on clicked window. What I do wrong ?
ssamko is offline  
Old 09/29/2015, 20:26   #24
 
mlukac89's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 473
Received Thanks: 104
You dont do anything wrong, if u have 2 same window opened with same names it send on selected window. For that u need to get PID of process name and then send only to PID u select.

mlukac89 is offline  
Old 09/29/2015, 21:45   #25
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
Quote:
Originally Posted by mlukac89 View Post
You dont do anything wrong, if u have 2 same window opened with same names it send on selected window. For that u need to get PID of process name and then send only to PID u select.
he say it focus the window there is nothing wrong with the code.
Focus is when you click with mouse into a window!
YatoDev is offline  
Old 10/01/2015, 19:52   #26
 
elite*gold: 1908
Join Date: Jan 2013
Posts: 832
Received Thanks: 629
Quote:
Originally Posted by »FlutterShy™ View Post
he say it focus the window there is nothing wrong with the code.
Focus is when you click with mouse into a window!
FS some ideas how to do it ?
ssamko is offline  
Old 10/01/2015, 20:17   #27
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
Quote:
Originally Posted by ssamko View Post
FS some ideas how to do it ?
i know it but you know its a secret of mbot^^
YatoDev is offline  
Old 10/01/2015, 21:01   #28
 
elite*gold: 0
Join Date: Mar 2010
Posts: 360
Received Thanks: 132
Quote:
Originally Posted by »FlutterShy™ View Post
i know it but you know its a secret of mbot^^
There was already another DarkOrbit Bot that used TrapDoor and was developed by iNK in 2013. TrapDoor itself was also developed by iNK and he released his DO Bot as Open Source.
You shouldn't call this a secret.



full TrapDoor API + Source

Code:
	TrapDoor.dll
	public static native int trapi_session_start();
	public static native int trapi_session_end(int sessionId);
	public static native String trapi_get(int sid, String url, String data);
	public static native String trapi_navigate(int sid, String url, String data);
	public static native Pointer trapi_screenshot(int sid);
	public static native int trapi_set_size(int sid, int w, int h);
	public static native void trapi_dll_cleanup();
	public static native int trapi_load_image(int sid, String path, String id);
	public static native int trapi_image_save(int sid, String path);
	public static native int trapi_type_key(int sessionId, char key);
	public static native String trapi_image_search(int sessionId, String bmpStr, int aVar, boolean repaint);
	public static native String trapi_image_search_area(int sessionId, String bmpStr, int aVar, boolean repaint, int top, int left, int bottom, int right);
	public static native NativeLong trapi_pixel_checksum_area(int sessionId, boolean repaint, int top, int left, int bottom, int right);
	public static native NativeLong trapi_pixel_color(int sessionId, int x, int y);
	public static native String trapi_pixel_search_area(int sessionId, int color, int aVar, boolean repaint, int top, int left, int bottom, int right);
	public static native String trapi_pop_source(int sessionId);
	public static native int trapi_mouse_move(int sessionId, int x, int y);
	public static native int trapi_mouse_down(int sessionId, int x, int y);
	public static native int trapi_mouse_up(int sessionId, int x, int y);
Daifoku is offline  
Thanks
1 User
Old 10/01/2015, 22:36   #29
 
elite*gold: 1908
Join Date: Jan 2013
Posts: 832
Received Thanks: 629
Quote:
Originally Posted by Daifoku View Post
There was already another DarkOrbit Bot that used TrapDoor and was developed by iNK in 2013. TrapDoor itself was also developed by iNK and he released his DO Bot as Open Source.
You shouldn't call this a secret.



full TrapDoor API + Source

Code:
	TrapDoor.dll
	public static native int trapi_session_start();
	public static native int trapi_session_end(int sessionId);
	public static native String trapi_get(int sid, String url, String data);
	public static native String trapi_navigate(int sid, String url, String data);
	public static native Pointer trapi_screenshot(int sid);
	public static native int trapi_set_size(int sid, int w, int h);
	public static native void trapi_dll_cleanup();
	public static native int trapi_load_image(int sid, String path, String id);
	public static native int trapi_image_save(int sid, String path);
	public static native int trapi_type_key(int sessionId, char key);
	public static native String trapi_image_search(int sessionId, String bmpStr, int aVar, boolean repaint);
	public static native String trapi_image_search_area(int sessionId, String bmpStr, int aVar, boolean repaint, int top, int left, int bottom, int right);
	public static native NativeLong trapi_pixel_checksum_area(int sessionId, boolean repaint, int top, int left, int bottom, int right);
	public static native NativeLong trapi_pixel_color(int sessionId, int x, int y);
	public static native String trapi_pixel_search_area(int sessionId, int color, int aVar, boolean repaint, int top, int left, int bottom, int right);
	public static native String trapi_pop_source(int sessionId);
	public static native int trapi_mouse_move(int sessionId, int x, int y);
	public static native int trapi_mouse_down(int sessionId, int x, int y);
	public static native int trapi_mouse_up(int sessionId, int x, int y);
Bro If I make it work I will kiss every part of your body !
Thak you !

EDIT: Is there some documentation for it ?
ssamko is offline  
Old 10/01/2015, 23:22   #30
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
Quote:
Originally Posted by Daifoku View Post
There was already another DarkOrbit Bot that used TrapDoor and was developed by iNK in 2013. TrapDoor itself was also developed by iNK and he released his DO Bot as Open Source.
You shouldn't call this a secret.
i didnt mean trapdoor because before trapdoor we used ControlClick

Quote:
Originally Posted by ssamko View Post
Bro If I make it work I will kiss every part of your body !
Thak you !

EDIT: Is there some documentation for it ?
ink allowed you to use it?
YatoDev is offline  
Reply

Tags
autoit, bot


Similar Threads Similar Threads
Any working background bot ?
08/07/2015 - DarkOrbit - 3 Replies
I need working background bot i dont care ban. Only pick bonux boxes fast
Seafight Bot Working in Background
06/15/2015 - Seafight - 2 Replies
#Closed
Seafight Bot Working in Background
06/15/2015 - Seafight - 1 Replies
https://www.youtube.com/watch?v=8dY3Fu_zI5k https://www.virtualbox.org/wiki/Downloads
anti-AFK working in background
10/27/2007 - World of Warcraft - 0 Replies
There's one that works? I work on my pc and usually i move it...but sometimes i forgot to move the pg and i get the deserter buff... so i'm searching an anti-afk that work in background... do you know one?:confused:



All times are GMT +1. The time now is 16:42.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.