How background bots working?

09/12/2015 09:46 Freshek#16
Can you write in English? :P I not understand You. :P
Edit: Ok, finally I understand you. My parameters are good.
09/12/2015 11:34 YatoDev#17
oh yes sry:D

FFNearestSpot($SizeSearch

params are wrong....
09/12/2015 12:18 Freshek#18
Thanks! :>
09/27/2015 11:58 Freshek#19
I have new problem. How to send ControlClick without focus window?
09/27/2015 18:42 mlukac89#20
ControlClick(title, text, controlid, button, 1, x, y)

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

Look in help file
09/27/2015 18:52 YatoDev#21
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.
09/27/2015 19:19 mlukac89#22
Oh :D
09/28/2015 08:12 ssamko#23
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 ?
09/29/2015 20:26 mlukac89#24
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.

[Only registered and activated users can see links. Click Here To Register...]
09/29/2015 21:45 YatoDev#25
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!
10/01/2015 19:52 ssamko#26
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 ? ;)
10/01/2015 20:17 YatoDev#27
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^^
10/01/2015 21:01 Daifoku#28
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.

[Only registered and activated users can see links. Click Here To Register...]

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);
10/01/2015 22:36 ssamko#29
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.

[Only registered and activated users can see links. Click Here To Register...]

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 ! :D
Thak you !

EDIT: Is there some documentation for it ?
10/01/2015 23:22 YatoDev#30
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 ! :D
Thak you !

EDIT: Is there some documentation for it ?
ink allowed you to use it?