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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

james0n

New Member
Joined
Jul 17, 2015
Messages
13
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