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

Question about exception in Battlegrounds and Dungeons

Mahlesseh

New Member
Joined
Mar 18, 2011
Messages
78
Reaction score
0
I want to make the CC also not heal in Dungeons and raids etc. It is already not healing in Battlegrounds.....

Code:
            // Don't heal in BGs. Kthx.
            return new Decorator(
                ret => !Battlegrounds.IsInsideBattleground && !Me.IsCasting,

Got that, how do i chance it to also not heal in instances?
 
Last edited:
PHP:
 // Don't heal in BGs. Kthx.
            return new Decorator(
                ret => !Battlegrounds.IsInsideBattleground && !Me.IsCasting && !StyxWoW.Me.IsInInstance,

works fine for me in a quick test!
 
It says it doesn't knows StyxWoW in this context. I am kinda fresh to this whole thing, just doing my baby steps.
 
Back
Top