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

Wizard Help

FRoxss

New Member
Joined
Mar 5, 2013
Messages
30
Reaction score
0
I am playing melee wizard and i need Wave of force spam in fight ıts possible with trinity?
 
I am playing melee wizard and i need Wave of force spam in fight ıts possible with trinity?

I'd be interested in that too since I'm using a perma stun Wave of Force - Static rune build but right now bot only Spam's my signature spell Living lighting. Ideally he'd Spam Wave of Force and switch to Living Lighting if Arcane power gets low then back to Wave of Force..
 
Is there an ideal skill set for the current trinity build in the mean time that is most effective? There are no class forums so just wondering if anyone believes they have an ideal skill set for Wizard's mapped out. Or even a couple different ones for different scenarios.
 
Wave of Force works on multiple enemies.
 
open Plugins > Trinity > Combat > Abilities > Wizard (Open with notepad) Find where it says Wave of force and copy paste this over it


// Wave of force
if (!UseOOCBuff && !Player.IsIncapacitated && CombatBase.CanCast(SNOPower.Wizard_WaveOfForce, CombatBase.CanCastFlags.NoTimer) && Player.PrimaryResource >= 25 &&
(TargetUtil.AnyMobsInRange(25) && CurrentTarget.RadiusDistance <= 25f) &&
PowerManager.CanCast(SNOPower.Wizard_WaveOfForce))
{
float blastRange = 11f;
return new TrinityPower(SNOPower.Wizard_WaveofForce, blastRange, Vector3.Zero, CurrentWorldDynamicId, -1, 0, 2, WAIT_FOR_ANIM);
}
 
I dont code or anything but basically I copy'd the mechanic of trinity's explosive blast and rewrote wave of force over it, and it works perfectly. This should fix it for you too. You'll just have to re-copy and paste that every time trinity updates into that wizard.cs
 
Back
Top