|
You last visited: Today at 16:42
Advertisement
How background bots working?
Discussion on How background bots working? within the AutoIt forum part of the Coders Den category.
09/12/2015, 09:46
|
#16
|
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.
|
|
|
09/12/2015, 11:34
|
#17
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
oh yes sry
FFNearestSpot($SizeSearch
params are wrong....
|
|
|
09/12/2015, 12:18
|
#18
|
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
|
Thanks! :>
|
|
|
09/27/2015, 11:58
|
#19
|
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
|
I have new problem. How to send ControlClick without focus window?
|
|
|
09/27/2015, 18:42
|
#20
|
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
|
|
|
09/27/2015, 18:52
|
#21
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
Quote:
Originally Posted by Freshek
How to send ControlClick without focus window?
|
Quote:
Originally Posted by mlukac89
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
|
#22
|
elite*gold: 0
Join Date: Sep 2010
Posts: 473
Received Thanks: 104
|
Oh
|
|
|
09/28/2015, 08:12
|
#23
|
elite*gold: 1908
Join Date: Jan 2013
Posts: 832
Received Thanks: 629
|
Quote:
Originally Posted by mlukac89
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
|
#24
|
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.
|
|
|
09/29/2015, 21:45
|
#25
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
Quote:
Originally Posted by mlukac89
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
|
#26
|
elite*gold: 1908
Join Date: Jan 2013
Posts: 832
Received Thanks: 629
|
Quote:
Originally Posted by »FlutterShy™
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
|
#27
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
Quote:
Originally Posted by ssamko
FS some ideas how to do it ? 
|
i know it but you know its a secret of mbot^^
|
|
|
10/01/2015, 21:01
|
#28
|
elite*gold: 0
Join Date: Mar 2010
Posts: 360
Received Thanks: 132
|
Quote:
Originally Posted by »FlutterShy™
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);
|
|
|
10/01/2015, 22:36
|
#29
|
elite*gold: 1908
Join Date: Jan 2013
Posts: 832
Received Thanks: 629
|
Quote:
Originally Posted by Daifoku
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 ?
|
|
|
10/01/2015, 23:22
|
#30
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
Quote:
Originally Posted by Daifoku
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
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?
|
|
|
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.
|
|