elitepvpers
elitepvpers
>
Black Desert
>
Send keys through AutoIt NA version
« full version
Send keys through AutoIt NA version
03/09/2016 09:40
Ewvyx
#1
Anyone know how to get AutoIt to be able to send keystrokes/mouseclicks through this game? Any help is appreciated.
03/09/2016 11:41
Littledagger
#2
Using Autohotkey working fine. Dunno about AutoIt.
03/12/2016 07:26
Ewvyx
#3
Hmm, I just tried AutoHotkey yesterday and still no dice. Scripts work outside of the program, but not while the program is focused.
03/12/2016 10:36
JuJuBoSc1
#4
You won't gonna get background keys without modifying the client.
03/14/2016 05:31
Littledagger
#5
You need Focus Client. But this work fine in Background. Was some like FocusSend or so
03/15/2016 14:07
BossRevolution
#6
Try to run your AutoHotkey Script as Administrator if u cant get the option modify your script to look like this:
Spoiler
Original:
Spoiler
ScrollLock::
While GetKeyState("ScrollLock", "P") = 1
{
Send {Space}
}
Return
XButton2::
Send ww
return
Modified:
Spoiler
IF NOT A_IsAdmin
{
Run *RunAs "
%YourScriptFullPath%
"
ExitApp
}
#SingleInstance, Force
#Persistent
ScrollLock::
While GetKeyState("ScrollLock", "P") = 1
{
Send {Space}
}
Return
XButton2::
Send ww
return
All the credits goes to Deletron and SnowFlake_FlowSnake from AutoHotKey Forum.
04/26/2016 03:42
Ewvyx
#7
Running as Admin works for both programs. Thanks for the feedback!
04/26/2016 18:58
Playmate
#8
You guys don't get kicked by XiGNCODE for using AutoIt/AutoHotkey?
04/26/2016 19:43
skskz
#9
Naw, xiggy won't detect that