
Originally Posted by
lesiu
was looking my whole FF life for something like this
Jast ~Ramuh
Ok, first of all you will need to download AutoHotKey and install it. I am unable to post an url but it is easy to find.
Here is the script, paste it into notepad, change the character names to yours, and then save it with a .ahk extension.
Code:
; Run every line
Critical
; Avoid warning dialogue about over-hits
#MaxHotkeysPerInterval 50000
#HotkeyInterval 1
#WinActivateForce
; Switch active window between Ricker and Scowie
Joy10::
{
IfWinActive Scowie ahk_class FFXiClass
{
If WinExist("Ricker ahk_class FFXiClass")
{
WinActivate
}
}
else
{
If WinExist("Scowie ahk_class FFXiClass")
WinActivate
}
return
}
; follow
Joy5::
{
IfWinActive Scowie ahk_class FFXiClass
{
SendInput {ctrl down}
sleep 100
SendInput z
sleep 100
SendInput {ctrl up}
}
else
{
SendInput {ctrl down}
sleep 100
SendInput x
sleep 100
SendInput {ctrl up}
}
return
}
I also have another button on my joypad follow the other character, just remove the last part of the script if you dont want this. If you do then you need to create some windower binds also, I had to add these 2 lines to my windower init.txt file;
bind ^z input /follow Ricker
bind ^x input /follow Scowie
Joy10 on my joypad is the right analogue stick, Joy5 is the little black button below the main buttons (xbox pad). If you want different buttons you can find out your button numbers by testing your joypad in control panel.
These buttons will still perform there normal function in FFXI if you have them configured to anything, you may need to make them do nothing.