
Originally Posted by
'spleen',index.php?page=Thread&postID=205808#post2 05808
Hello all,
Its been a while since i posted and i think ive looked through everything that i can in order to find this answer. What i am trying to do is to set my priest to heal my entire group while doing instances. Now what i have been doing since i am only tri-boxxing is i have him set up to heal a specific party member based on the 3 modifiers. Alt he targets party 0, shift he targets party 1 , and ctrl he targets party 2. ... this saved on some button real estate since i could do that all with 1 button no problem. Now. how in the heck can i do that for the last two people? i had hoped myabe i could combine modifiers to use say alt+ctrl , and ctrl+shift.... but i cant seem to find the right syntax or any referance to combining modifiers except that using two modifiers will result in the ability to use EITHER of those modifiers....
For using combinations of modifiers, you need to specify a complete combination that only matches one case, for example of doing it wrong:
Code:
/cast [mod:shift][target=party1] heal
/cast [mod:ctrl][target=party2] heal
/cast [mod:alt][target=party3] heal
/cast [mod:ctrl, mod:alt][target=party4] heal
the first 3 cases will all seem to work fine, but then when you hold down ctrl+alt you will end up healing party2 because the ctrl you are holding down will make that mod: statement true. So you need to either change the order of the tests so it checks for the combos first:
Code:
/cast [mod:ctrl, mod:alt][target=party4] heal
/cast [mod:shift][target=party1] heal
/cast [mod:ctrl][target=party2] heal
/cast [mod:alt][target=party3] heal
or you will need to specify "nomod" options to ensure a certain modifier is also Not pressed:
Code:
/cast [mod:shift][target=party1] heal
/cast [mod:ctrl, nomod:alt][target=party2] heal
/cast [mod:alt, nomod:ctrl][target=party3] heal
/cast [mod:ctrl, mod:alt][target=party4] heal
Connect With Us