Item Discipline Check/Cast
Posted: Tue Jul 07, 2015 4:53 pm
I been getting so much info from these forums i thought i would contribute back where i can. I more of a manual button pusher when it comes to using MQ2 so i don't automate much at all. So i found an easy way to check items with disc on them (usually Def or DPS) and cast them when you hit the hotkey. I have this setup as a hotbutton for my tank to go through defensive disc but you could easily make these holyshits by simply putting it in your mq2melee ini and adding holyshit1= and so on.
This is what i use on my Warrior for Defensive Disc off items. you put each /if statement on a line and it works perfect.
here the Break down:
${Cast.Ready[Item]} (Checks to see if the Item is on Cooldown)
${Window[CombatAbilityWnd].Child[CAW_CombatEffectLabel].Text.Equal[No Effect]} (Checks to see if your Combat Ability window is Empty.)
After that you put a check in for each item building as you do and it will check every items before the other.
The plugins you need to Make sure are runn is:
MQ2Melee
MQ2Cast
MQ2Exchange
MQ2Bandolier (Only required with Certain items but handy to have loaded anyway.)
Code: Select all
/if (${Cast.Ready[Ebony Carapace of Valik]} && ${Window[CombatAbilityWnd].Child[CAW_CombatEffectLabel].Text.Equal[No Effect]}) /casting "Ebony Carapace of Valik"
/if (${Cast.Ready[Ring of the Clawed Guardian]} && !${Cast.Ready[Ebony Carapace of Valik]} && ${Window[CombatAbilityWnd].Child[CAW_CombatEffectLabel].Text.Equal[No Effect]}) /casting "Ring of the Clawed Guardian"
/if (${Cast.Ready[Ring for the Strong]} && !${Cast.Ready[Ring of the Clawed Guardian]} && !${Cast.Ready[Ebony Carapace of Valik]} && ${Window[CombatAbilityWnd].Child[CAW_CombatEffectLabel].Text.Equal[No Effect]}) /Casting "Ring for the Strong"
This is what i use on my Warrior for Defensive Disc off items. you put each /if statement on a line and it works perfect.
here the Break down:
${Cast.Ready[Item]} (Checks to see if the Item is on Cooldown)
${Window[CombatAbilityWnd].Child[CAW_CombatEffectLabel].Text.Equal[No Effect]} (Checks to see if your Combat Ability window is Empty.)
After that you put a check in for each item building as you do and it will check every items before the other.
The plugins you need to Make sure are runn is:
MQ2Melee
MQ2Cast
MQ2Exchange
MQ2Bandolier (Only required with Certain items but handy to have loaded anyway.)