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

masternoob

New Member
Joined
Sep 10, 2014
Messages
20
Reaction score
0
Hello, I have a small question , I use a wizard with the build archon , and I need the action bar to have frost nova , but I do not use it, it's for rune when the skill is used by the ring , is that there have possilité of deactivated using this competence in the same way it is possible to deactivated the skill used archon .

sorry for my bad english

( trinity 2.x)

thx
 
Open the wizard combat config file and comment out frost nova...
 
i just fixed the frost nova and the archon should be nolong waiting for the 20buff anymore.it looks like used off cd.
this is just for archon build,because of the frost nova wont be used anymore.
View attachment WizardCombat.cs
 
Last edited:
ctrl + f search for "frost nova"
// Frost Nova
// if (CanCast(SNOPower.Wizard_FrostNova) && !Player.IsIncapacitated &&
// ((Runes.Wizard.DeepFreeze.IsActive && TargetUtil.AnyMobsInRange(25, 5)) || (!Runes.Wizard.DeepFreeze.IsActive && (TargetUtil.AnyMobsInRange(25, 1) || Player.CurrentHealthPct <= 0.7)) &&
// CurrentTarget.RadiusDistance <= 25f))
// {
// return new TrinityPower(SNOPower.Wizard_FrostNova, 20f);
// }



// if (CanCast(SNOPower.Wizard_FrostNova) && !Player.IsIncapacitated && !ShouldWaitForConventionElement(Skills.Wizard.FrostNova) &&
// ((Runes.Wizard.DeepFreeze.IsActive && TargetUtil.AnyMobsInRange(25, 5)) || (!Runes.Wizard.DeepFreeze.IsActive && (TargetUtil.AnyMobsInRange(25, 1) || Player.CurrentHealthPct <= 0.7)) &&
// CurrentTarget.RadiusDistance <= 25f))
// {
// return new TrinityPower(SNOPower.Wizard_FrostNova, 20f);
// }

change the code like this,it will "//" the frost nova ,so the nova wont be used anymore

and search for "ShouldStartArchon"
if (Sets.ChantodosResolve.IsFullyEquipped && CacheData.Buffs.HasBuff(SNOPower.P3_ItemPassive_Unique_Ring_021) && CacheData.Buffs.GetBuff(SNOPower.P3_ItemPassive_Unique_Ring_021).StackCount < 20)
return canCastArchon && (elitesOnly || trashInRange || CurrentTarget.IsBoss);

return canCastArchon && (elitesOnly || trashInRange || CurrentTarget.IsBoss);

change the false to canCastArchon && (elitesOnly || trashInRange || CurrentTarget.IsBoss)
 
Back
Top