You can actually assist and follow a vehicle. It's just not possible to target the person that's inside the vehicle. This is why the FTL-macros on this site don't work for vehicles, they first target and then follow/assist that target.
Here's an example of an assist macro that will work for vehicles
Code:
/assist [mod:ctrl,mod:shift,nomod:alt,target=ToonA][mod:ctrl,mod:alt,nomod:shift, target=ToonB][mod:alt,mod:shift,nomod:ctrl,target=ToonC][mod:ctrl,mod:alt,mod:shift,target=ToonD][mod:ctrl,nomod:alt,nomod:shift,target=ToonE]
And here's the follow macro that will work for vehicles:
Code:
/run if IsControlKeyDown() and IsShiftKeyDown() and not IsAltKeyDown() then FollowUnit("ToonA") elseif IsControlKeyDown() and IsAltKeyDown() and not IsShiftKeyDown() then FollowUnit("ToonB") elseif IsAltKeyDown() and IsShiftKeyDown() and not IsControlKeyDown() then FollowUnit("ToonC") elseif IsControlKeyDown() and IsAltKeyDown() and IsShiftKeyDown() then FollowUnit("ToonD") elseif IsControlKeyDown() and (not IsAltKeyDown()) and (not IsShiftKeyDown()) then FollowUnit("ToonE") end
With the above macros and a bar mod that allows you to replace the vehicle bars, FTL will work seamlessly for vehicles. Seperate follow and assist keys, leader or focus based macros are no longer needed.
Connect With Us