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.










share|improve this question
























  • 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















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.










share|improve this question
























  • 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













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.










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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


















  • 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










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




share





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "41"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    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

























    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




    share

























      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




      share























        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




        share












        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





        share











        share


        share










        answered 6 mins ago









        Yuu

        1,95421430




        1,95421430






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Михайлов, Христо

            Гороховецкий артиллерийский полигон

            Центральная группа войск