Pls, can someone give me a help in macroing ?

Pls, can someone give me a help in macroing ?

by FlashyBR » Tue Sep 15, 2015 4:14 pm

Hello guys,

I need a macro that do this:

Start attack > use Seal of Crusader > use Judgement > use Seal of Righteousness


But i dont know how to make a macro, never used this but ppl tell me its very useful, so can someone help me plz ?


Thx.
FlashyBR
Grunt
Grunt
 

Re: Pls, can someone give me a help in macroing ?

by Youfie » Tue Sep 15, 2015 6:58 pm

/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Spell_Holy_Holysmite")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m~=1) then c("Seal of the Crusader");end;
/cast Judgment
/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Abilityl_Thunderbolt)~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m~=1) then c("Seal of Righteousness");end;

This should do the trick.
Try this out, and tell me if this works, I don't play Paladin :).
The /cast Judgment line can be tweaked a bit, currently it will cast it even if you don't have any Seal of the two Seal on you (so that you can use it with other ones too).

EDIT : it's more than 255 charcaters. You'll need SuperMacro.
Maybe try this version :

/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Spell_Holy_Holysmite")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m~=1) then c("Seal of the Crusader"); else c("Seal of Righteousness")end;
/cast Judgment
User avatar
Youfie
Knight-Lieutenant
Knight-Lieutenant
 

Re: Pls, can someone give me a help in macroing ?

by FlashyBR » Tue Sep 15, 2015 7:39 pm

Youfie wrote:
/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Spell_Holy_Holysmite")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m~=1) then c("Seal of the Crusader");end;
/cast Judgment
/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Abilityl_Thunderbolt)~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m~=1) then c("Seal of Righteousness");end;

This should do the trick.
Try this out, and tell me if this works, I don't play Paladin :).
The /cast Judgment line can be tweaked a bit, currently it will cast it even if you don't have any Seal of the two Seal on you (so that you can use it with other ones too).

EDIT : it's more than 255 charcaters. You'll need SuperMacro.
Maybe try this version :

/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Spell_Holy_Holysmite")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m~=1) then c("Seal of the Crusader"); else c("Seal of Righteousness")end;
/cast Judgment


Whoa, thats alot :shock:

Rhanks, ill install super macro and try this, tell you later =)
FlashyBR
Grunt
Grunt
 

Re: Pls, can someone give me a help in macroing ?

by FlashyBR » Wed Sep 16, 2015 12:27 am

Didnt work, it keeps using Crusader seal
FlashyBR
Grunt
Grunt
 

Re: Pls, can someone give me a help in macroing ?

by RedBanner » Thu Dec 24, 2015 10:15 pm

Sure, I'm months late to the party, but this is the macro I have been using (and it requires SuperMacro):

Code: Select all
/script if buffed("Seal of") then cast ("Judgement") elseif not buffed("Judgement of the Crusader", "target") then cast("Seal of the Crusader") elseif not buffed("Seal of Righteousness") then cast("Seal of Righteousness") end
/script if not IsCurrentAction(1) then UseAction(1) end


The last line needs to have the "1" replaced by whatever location you have Attack set to.

This macro puts Seal of the Crusader on your target, and as long as it there, casts Righteousness instead.
Join #macrochat text channel for macro assistance (no sign-up required): Discord.
I'm not a pro, but I love building macros, sharing what I know, and learning more.
User avatar
RedBanner
Grunt
Grunt
 


Return to Paladin