iki201 7 Report post Posted March 17, 2015 макрос бафает кулак у кого нет манны и бафает мп5 у кого есть мана power = UnitPowerType("target") if ( power == 0 ) and (not buffed("Blessing of Wisdom", "target")) and (not buffed("Blessing of Might", "target")) then cast("Blessing of Wisdom") else if ( power > 0 ) and (not buffed("Blessing of Might", "target")) and (not buffed("Blessing of Wisdom", "target")) then cast("Blessing of Might") 3 Share this post Link to post Share on other sites
Grinya 780 Report post Posted March 17, 2015 а как же палиповер? 0 Share this post Link to post Share on other sites
shuraken007 345 Report post Posted March 17, 2015 это на баф 5-минутки А вобще по хорошему нада завести таблицу бафов по приоритету для классов, и бафать цель в соответствии с приоритетом, и запоминать, что ты бафнул, когда, и кому, если обновить соберешься, и не перебить свой баф. 0 Share this post Link to post Share on other sites
фткyн 1,469 Report post Posted April 2, 2015 это на баф 5-минутки А вобще по хорошему нада завести таблицу бафов по приоритету для классов, и бафать цель в соответствии с приоритетом, и запоминать, что ты бафнул, когда, и кому, если обновить соберешься, и не перебить свой баф. А если цель умрет? 0 Share this post Link to post Share on other sites
Av_vA 3,044 Report post Posted April 7, 2016 (edited) 2 макроса, котоырми пользуюсь сам на качеб требуется supermacro аддон: 1) Нужен для скидывания джаги крсака и баффа СоК на себя, можно спамить и не заморачиваться вообще /run local j="Judgement" r="seal of the crusader" s="seal of command" c=CastSpellByName b=buffed if b("judgement of the crusader",'target') then if b(s,'player') then c(j) else c(s) end elseif b(r,'player') then c(j) else c(r) end 2) Если есть СоК, то джага, если нет, то бафф СоК /run if buffed("Seal of Command", 'player') then CastSpellByName("Judgement") else CastSpellByName("Seal of Command") end Edited April 7, 2016 by Av_vA 1 Share this post Link to post Share on other sites
Av_vA 3,044 Report post Posted April 13, 2016 /script for i=0,GetNumPartyMembers() do if i==0 then TargetUnit("player") else TargetUnit("party"..i) end if not buffed("Blessing of Wisdom",'target') and not buffed("Blessing of Might",'target') then if UnitPowerType('target')==0 then CastSpellByName("Blessing of Wisdom") else CastSpellByName("Blessing of Might") end end end Требуется SuperMacro, т.к. более 255 символов и используется функция buffed, баффает всех манаюзеров в группе Blessing of Wisdom, всех остальных Blessing of Migth. Для инстов до 60 лвла - самое оно. 0 Share this post Link to post Share on other sites