FFXI Switch Monitor

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Forum » Windower » General » FFXI Switch Monitor
FFXI Switch Monitor
 Bahamut.Kisukeurahara
Offline
Server: Bahamut
Game: FFXI
Posts: 33
By Bahamut.Kisukeurahara 2020-04-18 03:05:42
Link | Quote | Reply
 
I have this working with other gamepads except Xbox One controller. What gives?
 Carbuncle.Razziel
Offline
Server: Carbuncle
Game: FFXI
Posts: 117
By Carbuncle.Razziel 2020-04-18 03:41:15
Link | Quote | Reply
 
Bahamut.Kisukeurahara said: »
I have this working with other gamepads except Xbox One controller. What gives?

Following these instructions helped me with that issue

https://na.nasomi.com/forum/viewtopic.php?t=5877
[+]
necroskull Necro Bump Detected! [42 days between previous and next post]
 Bahamut.Kisukeurahara
Offline
Server: Bahamut
Game: FFXI
Posts: 33
By Bahamut.Kisukeurahara 2020-05-30 09:39:12
Link | Quote | Reply
 
Carbuncle.Razziel said: »
Bahamut.Kisukeurahara said: »
I have this working with other gamepads except Xbox One controller. What gives?

Following these instructions helped me with that issue

https://na.nasomi.com/forum/viewtopic.php?t=5877

Thanks. Switching between characters is rather slow compared to hotkey I literally receive no input lag.

I figured I'd do human thing and show you how I got it to work. Found it on some forums.

Download xb1usb.11059.0.140526x64.msi (do a google search). These are the windows 7/8/8/1 drivers for XB1 Controller
2) Open device manager
3) Install xb1usb.11059.0.140526x64.msi
4) Manually update (browse my computer for driver software) > (let me pick from a list of device drivers) the 'Xbox Controller' in 'Xbox Peripherals' to 'Xbox Gaming Device Version 6.2.11059'
5) Under 'Human Interface Devices' you may now have a Disbaled Driver/ Driver with an Error/ Driver that can't start. Repeat step 4 BUT choose 'HID-compliant-device' as the driver.
[+]
Offline
Posts: 3876
By RadialArcana 2020-06-20 15:57:54
Link | Quote | Reply
 
vasna said: »
If anyone is interested i wrote a script that switches characters based on individual hotkeys for ahk.

#SingleInstance, Force
SetTitleMatchMode RegEx ;

XButton1::
WinActivate, Character
return
XButton2::
WinActivate, Character
return
WheelLeft::
WinActivate, Character
return
WheelRight::
WinActivate, Character
return

This works great, I changed it to:

#SingleInstance, Force
SetTitleMatchMode RegEx ;

Alt & Left::
WinActivate, charcter1
return
Alt & Down::
WinActivate, character2
return
Alt & Right::
WinActivate, charcter3
return

So pressing alt & left activates character1, alt & down character 2 and alt & right activates character3. More precise and easy alt tabbing.