Jump to content
Sign in to follow this  
iki201

макрос для авто бафов паладина

Recommended Posts

макрос бафает кулак у кого нет манны и бафает мп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") 

Share this post


Link to post
Share on other sites

это на баф 5-минутки

А вобще по хорошему нада завести таблицу бафов по приоритету для классов, и бафать цель в соответствии с приоритетом, и запоминать, что ты бафнул, когда, и кому, если обновить соберешься, и не перебить свой баф.

Share this post


Link to post
Share on other sites

это на баф 5-минутки

А вобще по хорошему нада завести таблицу бафов по приоритету для классов, и бафать цель в соответствии с приоритетом, и запоминать, что ты бафнул, когда, и кому, если обновить соберешься, и не перебить свой баф.

А если цель умрет?

Share this post


Link to post
Share on other sites

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 by Av_vA

Share this post


Link to post
Share on other sites
/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 лвла - самое оно.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×