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

james0n

New Member
Joined
Jul 17, 2015
Messages
13
Reaction score
0
Is there a way I can edit a file to change the distance that my character walks up and casts spectral blade? I want to get close enough for Arcane Orb to also explode but currently it is out of range.
 
Hard question for many people now... Not sure the file that store the skill ranges
 
File is found in Demonbuddy - Plugins - trinity - combat - abilities - wizardcombat

you need to look for this line of code and change the value (x)f


14f in this case
}
// Spectral Blade
if (CanCast(SNOPower.Wizard_SpectralBlade))
{
return new TrinityPower(SNOPower.Wizard_SpectralBlade, 14f, CurrentTarget.ACDGuid);
}
 
you can try this
Code:
// Spectral Blade
if (CanCast(SNOPower.Wizard_SpectralBlade))
{
    if(Sets.DelseresMagnumOpus.IsFullyEquipped && Skills.Wizard.ArcaneOrb.IsActive && 
            TargetUtil.AnyMobsInRangeOfPosition(Player.Position, 5f, 1) == false) {
        Skills.Wizard.SpectralBlade.Cast(); // try to get some shields before we move
        return new TrinityPower(SNOPower.Walk, CurrentTarget.RadiusDistance, CurrentTarget.Position);
    } else {
        return new TrinityPower(SNOPower.Wizard_SpectralBlade, 10f, CurrentTarget.ACDGuid);
    }
}
 
Back
Top