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

Wizard wont cast blizzard/black hole in a Trial rift..

Joined
Apr 13, 2013
Messages
218
Reaction score
2
Topic..
Im trying to run the trials and GRs but im having this issue..
When im in trials it isnt casting blizzard(apoc) or black hole.. This is causing me to only get level 18-20 key stones.
Once it uses the keystone and is in the GR it casts blizzard and black hole just fine.. also casts them in normal rifts and anything else ive tried..
It seems like the only thing its casting in the trial rifts that costs AP is my hydra..

Has anyone else experienced something similar? If so what was the fix?
Im on a fresh install with everything up to date.
 
Same with my wizard too. And I don't know how to fix it...
I hope someone can help us.
 
It does once the mobs start spawning more frequently. More than likely it has to do with the trash mob cluster settings.
 
Change the file into ...DemonbuddyBETA\Plugins\Trinity\Combat\Abilities\WizardCombat.cs

//===========file Before======================
// Wormhole / Black hole
float blackholeRadius = Runes.Wizard.Supermassive.IsActive ? 20f : 15f;
if (CanCast(SNOPower.X1_Wizard_Wormhole, CanCastFlags.NoTimer) &&
(TargetUtil.ClusterExists(blackholeRadius, 45f, 2) || CurrentTarget.IsBossOrEliteRareUnique))
{
return new TrinityPower(SNOPower.X1_Wizard_Wormhole, 65f, TargetUtil.GetBestClusterUnit(blackholeRadius, 45f, 1, false).Position);
}
//==============file After================================
// Wormhole / Black hole
float blackholeRadius = Runes.Wizard.Supermassive.IsActive ? 20f : 15f;
if (!Player.IsIncapacitated && CanCast(SNOPower.X1_Wizard_Wormhole, CanCastFlags.NoTimer) &&
(TargetUtil.ClusterExists(blackholeRadius, 45f, 2) || CurrentTarget.IsBossOrEliteRareUnique|| !HasPrimarySkill))
{
var bestClusterPoint = TargetUtil.GetBestClusterPoint(blackholeRadius, 65f, false);
return new TrinityPower(SNOPower.X1_Wizard_Wormhole, 65f, bestClusterPoint);
}

It works, and I'm glad I could help you. Sorry my bad English :)
 
Can you change something to have the wizard cast black hole constantly even if there is only 1 monster? So it would be almost like having black hole off cool down.
 
Back
Top