Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Black Desert
You last visited: Today at 22:00

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

Advertisement



[AutoIt] CrayonCode Bot Project (OpenSource & Free)

Discussion on [AutoIt] CrayonCode Bot Project (OpenSource & Free) within the Black Desert forum part of the MMORPGs category.

Reply
 
Old 05/04/2017, 22:05   #406
 
killzone's Avatar
 
elite*gold: 100
Join Date: Mar 2006
Posts: 1,819
Received Thanks: 424
I have not seen a software that separates your single mouse into 2 different actions. xD
Or a software that emulates another "mouse" while you are using the physical one.

However, I saw this: but Im sure that's not what you are looking for.
killzone is offline  
Old 05/04/2017, 22:25   #407
 
elite*gold: 0
Join Date: Apr 2017
Posts: 7
Received Thanks: 0
What about game pad can the script use game pad setting ?
samm001 is offline  
Old 05/04/2017, 22:56   #408
 
elite*gold: 0
Join Date: Dec 2014
Posts: 9
Received Thanks: 1
My back to mount function every time bugs in the wall, i need to have a boat and a horse to make this function work properly?
xam4do is offline  
Old 05/04/2017, 23:39   #409
 
elite*gold: 0
Join Date: Mar 2011
Posts: 108
Received Thanks: 8
Quote:
Originally Posted by Boian View Post
I can feel you pain but no, its not possible only with VM.
:/ yea bro thats hard to live with that, i m trying now VM with new script delays for extreme slow motion botting xD
s3anlike is offline  
Old 05/05/2017, 00:12   #410
 
elite*gold: 0
Join Date: Sep 2015
Posts: 17
Received Thanks: 0
It's possible to send input to a window without using the actual cursor/keyboard with Window's SendMessage API but I don't know how BDO will react to it. It has to be "configured" to send the right events, and those depend on how the game handles input.

I've done it in C# and AutoIt.


sssk is offline  
Old 05/05/2017, 03:07   #411
 
iNiperx's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 610
Received Thanks: 152
Quote:
Originally Posted by sssk View Post
It's possible to send input to a window without using the actual cursor/keyboard with Window's SendMessage API but I don't know how BDO will react to it. It has to be "configured" to send the right events, and those depend on how the game handles input.

I've done it in C# and AutoIt.


And it would be very nice if it was implemented because I'd like to use my PC while fish botting, using VMWare is annoying
iNiperx is offline  
Old 05/05/2017, 06:53   #412
 
elite*gold: 0
Join Date: Mar 2006
Posts: 44
Received Thanks: 6
Quote:
Originally Posted by sssk View Post
It's possible to send input to a window without using the actual cursor/keyboard with Window's SendMessage API but I don't know how BDO will react to it. It has to be "configured" to send the right events, and those depend on how the game handles input.

I've done it in C# and AutoIt.


Didnt know about that , thanks for the info.
Boian is offline  
Old 05/05/2017, 14:46   #413
 
elite*gold: 0
Join Date: Mar 2011
Posts: 108
Received Thanks: 8
Quote:
Originally Posted by iNiperx View Post
And it would be very nice if it was implemented because I'd like to use my PC while fish botting, using VMWare is annoying
if that works, it would be freakin awesome!!!
s3anlike is offline  
Old 05/05/2017, 14:51   #414
 
ahmedwork's Avatar
 
elite*gold: 325
Join Date: Apr 2008
Posts: 700
Received Thanks: 221
Quote:
Originally Posted by iNiperx View Post
And it would be very nice if it was implemented because I'd like to use my PC while fish botting, using VMWare is annoying
and how do you guys gonna read pixel and do imagesearch if bdo window is minimized and btw send message is blocked on blackdesert you have to implement a custom input driver

Sent from my Redmi 4 using Tapatalk
ahmedwork is offline  
Old 05/05/2017, 14:59   #415
 
elite*gold: 0
Join Date: Mar 2008
Posts: 23
Received Thanks: 1
Possible to get auto run for this? And now im not talking about the games own autopath but very simple thing

hold down W and additionaly shift. This would be great when traveling at ocean. While T is working its a lot slower than W + Shift.
Greippi is offline  
Old 05/05/2017, 15:19   #416
 
elite*gold: 0
Join Date: Apr 2017
Posts: 108
Received Thanks: 199
@ BDO blocks input if the window isn't active or the mouse is outside of window region. I'm already using controlsend so all keyboard input is directly sent to BDO. Controlclick doesn't work at all sadly.

@ sorry that your life is so difficult.

@ You'd have to make the changes yourself. You'll find most Input with CoSe().
I don't know how behavior or input changes with gamepad.

@ Send("{w down}")

@ the problem is the transparency in the npc search window. Depending on the background it sometimes can't detect the anchor and the positions are off.

PS: I'm busy for a few days so next version will be delayed.
CrayonCode is offline  
Old 05/05/2017, 15:45   #417
 
elite*gold: 0
Join Date: Apr 2010
Posts: 7
Received Thanks: 1
Does anyone experience the cursor veering off track? my cursor path is correct until it ants to click on an npc finder or type in the name, at that point it either goes straight down, and clicks nothing or veeers to the right and clicks a quest instead of heading for the nearby npc button or the text box. some times it hovers also to the left of the text box and slightly above it, rendering the motion useless as well.
lennal is offline  
Old 05/05/2017, 16:28   #418
 
elite*gold: 0
Join Date: Sep 2015
Posts: 17
Received Thanks: 0
Quote:
Originally Posted by ahmedwork View Post
and how do you guys gonna read pixel and do imagesearch if bdo window is minimized and btw send message is blocked on blackdesert you have to implement a custom input driver

Sent from my Redmi 4 using Tapatalk
Well the use-case here was having BDO on a second screen while doing something else on the main screen, so it wouldn't be minimized. But maybe it's possible to get window information using the hwnd, but ImageSearch/FF might not work with it. I know I had this working with EVE Online.

Quote:
Originally Posted by CrayonCode View Post
@ BDO blocks input if the window isn't active or the mouse is outside of window region. I'm already using controlsend so all keyboard input is directly sent to BDO. Controlclick doesn't work at all sadly.
ControlClick does not work like SendMessage does. The first one is more oriented towards WinForm applications which have controls, and the later is more low-level raw events. In the context of BDO, ControlClick would just be sending clicks to the window control.

The basics of SendMessage are building the LParams with the coordinates and sending WM_LBUTTONDOWN/WM_LBUTTONUP, along with other events, like mousemove/hittest/etc to simulate it.

But in terms of effort-reward, I think there are other things that should be prioritized before attempting this.
sssk is offline  
Old 05/05/2017, 17:45   #419
 
elite*gold: 0
Join Date: Mar 2008
Posts: 23
Received Thanks: 1
@ Send("{w down}")

Hi thanks for the reply but im not really sure where i should put this.

I've opened the file with autoit and checking the code itself but i bit lost. My understanding of autoit is bad so do you mind helping out?
Greippi is offline  
Old 05/05/2017, 18:27   #420
 
killzone's Avatar
 
elite*gold: 100
Join Date: Mar 2006
Posts: 1,819
Received Thanks: 424
Quote:
Originally Posted by sssk View Post
snip
All background input is blocked by Xigncode.
And there's no point to use it as you are required to make the window foreground to do ImageSearch & PixelSearch anyway.


Quote:
Originally Posted by Greippi View Post
@ Send("{w down}")

Hi thanks for the reply but im not really sure where i should put this.

I've opened the file with autoit and checking the code itself but i bit lost. My understanding of autoit is bad so do you mind helping out?
What are you trying to achieve?
Also, why are you tagging yourself?
Tag someone else. If you are talking to CrayonCode, tag him by using @ then CrayonCode ( @ ).
killzone is offline  
Reply


Similar Threads Similar Threads
[Opensource] PokeMMO Autoit bots
01/12/2014 - Pokemon - 117 Replies
DON'T USE THIS UNTIL WE FIND A WAY TO WORK AROUND THE CAPTCHA!!! Gnomepy's PokeMMO bot V6.1 *31 january 2013* Functions: -Heals when hp/pp is low -Catches shiny's -Train EV (currently only Attack, Speed and Sp.Attack are added)
[OPENSOURCE PROJECT] BROWSERGAME
02/06/2012 - Web Development - 8 Replies
HEYHO Leute :D , Ich suche Leute die Lust hätten mit mir ein eigenes Browsergame zu erstellen. Also ich bräuchte ein ganzes Team so wie Sponsoren usw. Wir Brauchen Programmierer Und eine Idee. Was genau wir veröffentlichen wollen. Alle die Vielleicht nicht mit machen wollen aber eine idee haben bitte in den Kommis Schreiben LG StreetFight
[OpenSource Project] C++ CoCore
01/26/2011 - CO2 Private Server - 59 Replies
Alright, I think I'm done with the lurking for now.. The main reason of me starting this project is to get some people to use C++ instead of C#. There are a few members who I believe have potential, and I think those are pretty much the ones who will take interests into this project. What is this CoCore, and what does it contain?: Unknown (?) Yes.. Unknown. I think I want the members who are interested to provide me with a list of things that should be put in, for example, custom...
Farmville Automatizer OPENSOURCE free bot [AutoIT]
04/05/2010 - Facebook - 2 Replies
Farmville Automatizer released! Open Source >>> Download <<<



All times are GMT +2. The time now is 22:00.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.