Toggle mouselook in Final Fantasy XIV
//ads -- adsterra.com -- native banner
?>
Final Fantasy XIV doesn't support mouselook, i.e. where you can turn the camera and the character without holding the right mouse button. What are the possible solutions?
Best Answer
- Install AutoHotkey.
- Create a file named
ff14.ahk
with this content:
SetTitleMatchMode, 3
#IfWinActive FINAL FANTASY XIV
; Left Control switch
RmbHold := false
LCtrl::
RmbHold := !RmbHold
if RmbHold {
send {RButton down}
} else {
send {RButton up}
}
return
; Mapping RMB to the controller A/X for easier interaction without a mouse cursor on screen
RButton::
if RmbHold {
send {G}
} else {
send {RButton down}
}
return
RButton Up::
if !RmbHold {
send {RButton up}
}
return
; Automatically turn off the RMB-holding on Alt-Tab to avoid messing up other applications
!Tab::
if RmbHold {
RmbHold := false
send {RButton up}
}
send {Alt down}{Tab}
return
!Tab Up::
send {Alt up}
return
- In FF, go to 'System - Keybinds - Gamepad - X Button' (or 'A Button' for Xbox gamepad) and bind it to PgDn (page down key).
- Keep
ff14.ahk
running while you're playing FF.
Now, when in-game:
- Pressing Ctrl ingame will toggle between mouselook and having the cursor on the screen, and
- Pressing RMB will act like the gamepad's 'X', that is:
- If you don't have a target selected it will select what's in front of you - both an enemy, a neutral NPC, an interactable world object, etc.
- If you got a target selected and it's an enemy, it will start autoattacking.
- If it's an interactable object/NPC it will interact with it.
- If you're in a dialogue it will skip the current dialogue line.
Pictures about "Toggle mouselook in Final Fantasy XIV"
Quick Answer about "Toggle mouselook in Final Fantasy XIV"
- Pressing Ctrl ingame will toggle between mouselook and having the cursor on the screen, and.
- Pressing RMB will act like the gamepad's 'X', that is: If you don't have a target selected it will select what's in front of you - both an enemy, a neutral NPC, an interactable world object, etc.
How do I walk in ff14?
Move your character by using the left stick. Hold down \u3007 then use the left stick to make your character walk.Can you play ff14 with keyboard and mouse?
You can move your character using either a keyboard or mouse. When using a keyboard, press the WASD keys to move. When using a mouse, press the left and right mouse buttons at the same time to move forward. To change direction while moving, keep both buttons pressed and drag the mouse left or right.How do I get to main menu Ffxiv?
Both menus can be accessed by left-clicking on the System icon found at the bottom right of the screen. They can also be acccessed via keyboard shortcuts. Both menus can be accessed by pressing the Start button (or OPTIONS button on the PS5\u2122/PS4\u2122) to open the main menu, then selecting the System tab.Hotbars \u0026 Hotkeys Guide | And how YOU should set it
Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.
Images: Mikhail Nilov, MaurĂcio Mascaro, Antonio Friedemann, Pixabay