Code:
/assist [mod:rctrl,mod:rshift,nomod:ralt,target=Shomey][mod:rctrl,mod:ralt,nomod:rshift,target=Shomea][mod:ralt,mod:rshift,nomod:rctrl,target=Shomee][mod:rctrl,mod:ralt,mod:rshift,target=Shomei][mod:rctrl,nomod:ralt,nomod:rshift,target=Shomeu]
Here's a helper for the FTL stuff too, it will make the top number row of the keyboard between the ~ and backspace keys into FTL keys, and the numbers only on the numberpad. You can add any keys you want to the keylist just under the first comment. There is no real reason to mess with the rest of the code I changed it so it would work with the setup you demonstrated in your fist post. (w1,w2...modifier order, etc)
******The one thing you may need to change is the name of the windows*****
******I have the window for w1 titled WoW1, w2 WoW2, etc*****
******If you have them titled something else change the WOW1 type parts to match whatever you have named them******
Code:
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ADDING KEYS TO THIS LIST WILL AUTOMATICALLY CREATE //
// HOTKEYS WITH THE CORRECT (RIGHT SIDE) MODIFIERS //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
<KeyList FTLList 0-9, minus, plus, Numpad0-Numpad9>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// THE FOLLOWING SECTION DOES NOT NEED TO BE MODIFIED //
// TOON 1 = rctrl+rshift TOON 2 = rctrl+ralt TOON 3 = ralt+rshift //
// TOON 4 = rctrl+ralt+rshift TOON5 = rctrl //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Added FTL Templates
// %1% : Master Key
// %2% : Slave Key
// %3% : Modifier
// %4% : SlavesToSend
<Template SendMasterAndSlave>
<passthrough>
<Sendlabel %4%>
<Key %3% %2%>
<EndTemplate>
// %1% : master key
// %2% : slave key
// %3% : modifier
// %4% : Active window
// %5% : Slave Windows
<Template SendLeaderless>
<If ActiveWinIs %4%>
<ApplyTemplate SendMasterAndSlave "%1%" "%2%" "%3%" "%5%">
<EndTemplate>
// %1% : master-key
// %2% : slave-key
<Template FTL>
<Hotkey %1%>
<ApplyTemplate SendLeaderless "%Trigger%" "%2%" "rctrl rshift" WoW1 "w2,w3,w4,w5">
<ApplyTemplate SendLeaderless "%Trigger%" "%2%" "rctrl ralt" WoW2 "w1,w3,w4,w5">
<ApplyTemplate SendLeaderless "%Trigger%" "%2%" "ralt rshift" WoW3 "w1,w2,w4,w5">
<ApplyTemplate SendLeaderless "%Trigger%" "%2%" "rctrl ralt rshift" WoW4 "w1,w2,w3,w5">
<ApplyTemplate SendLeaderless "%Trigger%" "%2%" "rctrl" WoW5 "w1,w2,w3,w4">
<EndTemplate>
//----------------------------------------------------------------
//Definition of FTL keys
//----------------------------------------------------------------
<ApplyTemplate FTL FTLList %Trigger%>
The above script will allow you to use left modifiers in conjunction with the FTL modifiers. Your macros will have to validate proper modifier usage of course. If you wish to use such a setup I recommend using a /click line to give you enough space.
Place your assist macro fixed at the top of this post on a key by itself. The top right side of the ride side bars is called "MultiBarRightButton1" I will use that in the example. Again that button is where you place your "assist macro" only.
Code:
#showtooltip
/click [mod:rctrl/ralt/rshift] MultiBarRightButton1
/cast [nomod:lctrl,harm] Flame Shock; [harm][mod:lctrl,harm][] Wind Shear
The above macro will click your assist button if one of the "RIGHT" modifiers is "pressed" or "sent" by the script. The slashes mean "or" in macros. So no need to do all the mod...nomod stuff, just see if one of them is sent and if so click the assist macro, which will evalute the actual mods sent and select the correct char to assist.
The next line will shoot flame shock if you don't press anything other than the key you placed the macro on.
It will shoot Wind Shear if you hold down the LEFT ctrl key.
Be warned using something like this you can not use more than 2 of the left side mods at a time, as WoW will only check for 5 mods held, and one of the chars uses 3 mods to define itself as leader.
Follow is simple as well
Simply put
Code:
/click [mod:rctrl/ralt/rshift] MultiBarRightButton1
/follow [mod]
The alts will follow the leader will not atempt to follow itself using that macro.
I hope this helps get you started with the FTL system,
Bettysue
:::: Disclaimer/Credits ::::
I take no credit for this template, I found it here on this site I believe, however, given the current nature of the search function I was unable to find it again, so I have simply reposted it. I believe credit goes to Olipcs, however, I may be mistaken.
Connect With Us