What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Need help adding something to a Ret Pally CC (right now using Singular):

FunnymAN

Member
Joined
Jul 28, 2011
Messages
126
Reaction score
0
So the bot isn't really using Divine Purpose. It really isn't that big a deal while in combat but what i would like is a check, if out of combat is true and divine purpose buff is true i want it to use Word Of Glory. So basically a check once combat is done to see if I have the buff.

Is this easy to do? Could someone help me out here?
 
So the bot isn't really using Divine Purpose. It really isn't that big a deal while in combat but what i would like is a check, if out of combat is true and divine purpose buff is true i want it to use Word Of Glory. So basically a check once combat is done to see if I have the buff.

Is this easy to do? Could someone help me out here?

PHP:
       Spell.Heal("Word of Glory", ret => !StyxWoW.Me.Combat && Me.HasAura("Divine Purpose")),

But the above is not neccesary as Singular already has the following:

PHP:
  // Heals                
Spell.Heal("Word of Glory",
                    ret => (StyxWoW.Me.CurrentHolyPower == 3 || StyxWoW.Me.ActiveAuras.ContainsKey("Divine Purpose")) &&    
                        StyxWoW.Me.HealthPercent <= SingularSettings.Instance.Paladin.WordOfGloryHealth),

So are u sure it doesn't work, and u have the settings good?
 
I think the problem is that my health isn't low enough for it to use WoG. What i want is even if i am at 100% health, if combat has ended and i have divine purpose buff i want it to WoG. And i am also 100% positive the bot isn't using Divine Purpose because it doesn't use Templar's Verdict the moment i get the buff in combat.

So where should i put that line of code? Common or Ret? Or it doesn't matter?
 
Last edited:
I think the problem is that my health isn't low enough for it to use WoG. What i want is even if i am at 100% health, if combat has ended and i have divine purpose buff i want it to WoG. And i am also 100% positive the bot isn't using Divine Purpose because it doesn't use Templar's Verdict the moment i get the buff in combat.

So where should i put that line of code?

I have no active wow sub anymore, but I'm not sure whether this is a typo in singular or meant to be.

PHP:
        Spell.Cast("Templar's Verdict", ret => StyxWoW.Me.CurrentHolyPower == 5),
        Spell.Cast("Templar's Verdict", ret => StyxWoW.Me.CurrentHolyPower == 3 || StyxWoW.Me.CurrentHolyPower == 4),

Isn't the max Holy Power 3 ? -> Excuse me if I'm wrong, no pally player....

Also, here the version with Ur requested code implemented.

Replace the current in \Routines\Singular\ClassSpecific\Paladin with the one attached.

**If u want to fix Templar's verdict right away, tell me how it should behave =]
 
Last edited:
lol, before i download you didnt touch the holy power right?!? Because they bumped it up to 5 this expansion.
 
Last edited:
lol, before i download you didnt touch the holy power right?!? Because they bumped it up to 5 this expansion

PHP:
        Spell.Heal("Word of Glory", ret => !StyxWoW.Me.Combat && Me.HasAura("Divine Purpose")),

Is the only code I added at the attached file =]
 
PHP:
        Spell.Heal("Word of Glory", ret => !StyxWoW.Me.Combat && Me.HasAura("Divine Purpose")),

Is the only code I added at the attached file =]


:) Thanks.

I think i may play around with my CC. How it should behave, at least in my thinking, is if in combat, if i get the divine purpose proc i should cast Templar's Verdict. But i dont know how specific it can be. For instance if i get a DP proc and Crusader Strike isn't on cooldown i want it to crusader strike then Templar's Verdict but only when my holy power is less then 5.
 
Last edited:
:) Thanks.

I think i may play around with my CC. How it should behave, at least in my thinking, is if in combat, if i get the divine purpose proc i should cast Templar's Verdict. But i dont know how specific it can be. For instance if i get a DP proc and Crusader Strike isn't on cooldown i want it to crusader strike then Templar's Verdict but only when my holy power is less then 5.

All possible, i'm bored atm... add me on skype and i'll tailor it to ur needs if u'd like.

Miraveux
 
Last edited:
Back
Top