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

Etched Sigil and arcane power spender

mithras001

New Member
Joined
Sep 14, 2014
Messages
14
Reaction score
0
Hi, just wondering if there is anyway to disable the arcane power spender while I am equipping Etched sigil(except the channeling spells of course)?
 
Most of them are disabled already. What arcane spender do you have in mind?
 
Hydra hasn't been removed if i didn't see wrongly. Trinity will cast hydra first then on to the channel skill.
 
I'll add Hydra then.

@Shaded: yeah, just add a '&& !Legendary.EtchedSigil.IsEquipped' check to the skill you want in WizardCombat.cs.

So, for example

Code:
            if (CanCast(SNOPower.Wizard_Hydra, CanCastFlags.NoTimer))

becomes

Code:
            if (CanCast(SNOPower.Wizard_Hydra, CanCastFlags.NoTimer)&& !Legendary.EtchedSigil.IsEquipped)
 
but what i have to whrite if i dont want cast energy twister or black hole?
 
Back
Top