Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Mouse Look

ompgamingompgaming Member UncommonPosts: 188

I've been experimenting with the user interface and game controls a bit, and I can't find a way to change the mouse look settings.  Currently I have to click the left mouse button to lock the game camera to the mouse in order to pan my view.  In other games I have been able to set it so the camera was locked to the mouse, but I can't find a way to do that on AOC.

Does anyone know if thats possible, and how to do it?  Thanks.

Above all else... never ever piss off the penguin.

Comments

  • DeeweDeewe Member UncommonPosts: 1,980

    It can only be done with external macros.

     

    Just download autohotkey and tweak the following script

    [code]

     


    #IfWinActive Age of Conan


    Thread, interrupt, 0


    ;


    ^LButton::


    Thread, Priority, 2147483647


    Click down right


    exit


    ;


     


    `::


    send, {X} ; switch weaponset ; replace "X" with correct keymapping.


    if (weaponset = 1)


    {


    send ]


    weaponset = 2


    }


    else


    {


    send [


    weaponset = 1


    }


    return ; add this return to not mess up previous functionality.


     


    WheelDown::send {WheelDown 6}


    WheelUp::send {WheelUp 25}


    XButton1::send {NumLock}

     

     


    #IfWinActive Age of Conan


    Thread, interrupt, 0


    ;


    ^LButton::


    Thread, Priority, 2147483647


    Click down right


    exit


    ;


     


    `::


    send, {X} ; switch weaponset ; replace "X" with correct keymapping.


    if (weaponset = 1)


    {


    send ]


    weaponset = 2


    }


    else


    {


    send [


    weaponset = 1


    }


    return ; add this return to not mess up previous functionality.


     


    WheelDown::send {WheelDown 6}


    WheelUp::send {WheelUp 25}


    XButton1::send {NumLock}



     

     

     


    #IfWinActive Age of Conan


    Thread, interrupt, 0


    ;


    ^LButton::


    Thread, Priority, 2147483647


    Click down right


    exit


    ;


     


    `::


    send, {X} ; switch weaponset ; replace "X" with correct keymapping.


    if (weaponset = 1)


    {


    send ]


    weaponset = 2


    }


    else


    {


    send [


    weaponset = 1


    }


    return ; add this return to not mess up previous functionality.


     


    WheelDown::send {WheelDown 6}


    WheelUp::send {WheelUp 25}


    XButton1::send {NumLock}

     

    [/code]

    Forgot to add: I still blame AoC dev and Producer not only for not allowing players to remap this feature but also to have removed the CTRL+M mouse look toogle that was at launch, simply lame.

  • ompgamingompgaming Member UncommonPosts: 188

    Thanks for the info.  That's unfortunate that this isn't changable in game.  I'm not very experienced with macros like that, so I suppose I'll just have to get use to the way it works now.

     

    Thanks for letting me know.

    Above all else... never ever piss off the penguin.

  • DeeweDeewe Member UncommonPosts: 1,980

    Originally posted by ompgaming

    Thanks for the info.  That's unfortunate that this isn't changable in game.  I'm not very experienced with macros like that, so I suppose I'll just have to get use to the way it works now.

     

    Thanks for letting me know.

     

    Download and install autohotkey from here

     

    Create a new .txt file

     

    Parse the below code in it:

     

     


    #IfWinActive Age of Conan


    Thread, interrupt, 0


    ;


    ^LButton::


    Thread, Priority, 2147483647


    Click down right


    exit


    ;


     


    WheelDown::send {WheelDown 6}


    WheelUp::send {WheelUp 25}


    XButton1::send {NumLock}

     

    Save the file and rename it with a .ahk extension.

     

    Double click on the file and launch the game.

     

    CTRL+left click it will toggle mouse look mode

    Right click will disable mouse look mode.

     

    Enjoy

Sign In or Register to comment.