Is there a way to use abilities at my mouse cursor when I press the hotbar button?
up vote
1
down vote
favorite
I've been playing Titan Quest Anniversary Edition. I've had a lot of fun, but I'm encountering an a problem I always had with the game - targeting abilities feels clunky. I have to hit the button, and then click a target. That stinks.
Is there a way to streamline this? I looked over the options briefly and didn't see anything.
titan-quest-ae
add a comment |
up vote
1
down vote
favorite
I've been playing Titan Quest Anniversary Edition. I've had a lot of fun, but I'm encountering an a problem I always had with the game - targeting abilities feels clunky. I have to hit the button, and then click a target. That stinks.
Is there a way to streamline this? I looked over the options briefly and didn't see anything.
titan-quest-ae
Just as an aside, I think this is called smart casting, at least in league
– Aequitas
Sep 18 '16 at 2:52
There are mods that do this.
– Aequitas
Sep 18 '16 at 3:46
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I've been playing Titan Quest Anniversary Edition. I've had a lot of fun, but I'm encountering an a problem I always had with the game - targeting abilities feels clunky. I have to hit the button, and then click a target. That stinks.
Is there a way to streamline this? I looked over the options briefly and didn't see anything.
titan-quest-ae
I've been playing Titan Quest Anniversary Edition. I've had a lot of fun, but I'm encountering an a problem I always had with the game - targeting abilities feels clunky. I have to hit the button, and then click a target. That stinks.
Is there a way to streamline this? I looked over the options briefly and didn't see anything.
titan-quest-ae
titan-quest-ae
edited Sep 18 '16 at 2:52
Aequitas
14.5k1569117
14.5k1569117
asked Sep 18 '16 at 2:47
two bugs
7,9352057101
7,9352057101
Just as an aside, I think this is called smart casting, at least in league
– Aequitas
Sep 18 '16 at 2:52
There are mods that do this.
– Aequitas
Sep 18 '16 at 3:46
add a comment |
Just as an aside, I think this is called smart casting, at least in league
– Aequitas
Sep 18 '16 at 2:52
There are mods that do this.
– Aequitas
Sep 18 '16 at 3:46
Just as an aside, I think this is called smart casting, at least in league
– Aequitas
Sep 18 '16 at 2:52
Just as an aside, I think this is called smart casting, at least in league
– Aequitas
Sep 18 '16 at 2:52
There are mods that do this.
– Aequitas
Sep 18 '16 at 3:46
There are mods that do this.
– Aequitas
Sep 18 '16 at 3:46
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
There is no way to do this in-game. You'll have to use a third-party program (AutoHotkey, AutoIT) to do that.
Here's an AutoHotkey script, taken from the official Steam forums:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance
#InstallKeybdHook
#InstallMouseHook
SetTimer, MoveTimer, 128
return
MoveTimer:
IfWinActive, Titan Quest
{
GetKeyState, state, MButton ; or what button you want it to be
if state = D
{
MouseClick, left
}
GetKeyState, state, numpad0 ; or what button you want it to be
if state = D
{
;MouseClick, left
}
}
return
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
There is no way to do this in-game. You'll have to use a third-party program (AutoHotkey, AutoIT) to do that.
Here's an AutoHotkey script, taken from the official Steam forums:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance
#InstallKeybdHook
#InstallMouseHook
SetTimer, MoveTimer, 128
return
MoveTimer:
IfWinActive, Titan Quest
{
GetKeyState, state, MButton ; or what button you want it to be
if state = D
{
MouseClick, left
}
GetKeyState, state, numpad0 ; or what button you want it to be
if state = D
{
;MouseClick, left
}
}
return
add a comment |
up vote
0
down vote
There is no way to do this in-game. You'll have to use a third-party program (AutoHotkey, AutoIT) to do that.
Here's an AutoHotkey script, taken from the official Steam forums:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance
#InstallKeybdHook
#InstallMouseHook
SetTimer, MoveTimer, 128
return
MoveTimer:
IfWinActive, Titan Quest
{
GetKeyState, state, MButton ; or what button you want it to be
if state = D
{
MouseClick, left
}
GetKeyState, state, numpad0 ; or what button you want it to be
if state = D
{
;MouseClick, left
}
}
return
add a comment |
up vote
0
down vote
up vote
0
down vote
There is no way to do this in-game. You'll have to use a third-party program (AutoHotkey, AutoIT) to do that.
Here's an AutoHotkey script, taken from the official Steam forums:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance
#InstallKeybdHook
#InstallMouseHook
SetTimer, MoveTimer, 128
return
MoveTimer:
IfWinActive, Titan Quest
{
GetKeyState, state, MButton ; or what button you want it to be
if state = D
{
MouseClick, left
}
GetKeyState, state, numpad0 ; or what button you want it to be
if state = D
{
;MouseClick, left
}
}
return
There is no way to do this in-game. You'll have to use a third-party program (AutoHotkey, AutoIT) to do that.
Here's an AutoHotkey script, taken from the official Steam forums:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance
#InstallKeybdHook
#InstallMouseHook
SetTimer, MoveTimer, 128
return
MoveTimer:
IfWinActive, Titan Quest
{
GetKeyState, state, MButton ; or what button you want it to be
if state = D
{
MouseClick, left
}
GetKeyState, state, numpad0 ; or what button you want it to be
if state = D
{
;MouseClick, left
}
}
return
answered 6 mins ago
Yuu
1,95421430
1,95421430
add a comment |
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f285756%2fis-there-a-way-to-use-abilities-at-my-mouse-cursor-when-i-press-the-hotbar-butto%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Just as an aside, I think this is called smart casting, at least in league
– Aequitas
Sep 18 '16 at 2:52
There are mods that do this.
– Aequitas
Sep 18 '16 at 3:46