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

failsauce

New Member
Joined
Jan 17, 2016
Messages
8
Reaction score
0
Hey everyone,

I'm using a DMO wizard with spectral blades and arcane orbit. My question is how can I decrease the max range of spectral blades?

Right now, the bot attacks monsters with spectral blades, but the arcane orbits don't explode because the range of the orbs is apparently less than the range of spectral blades.

Thanks!
 
I have checked the WizardCombat.cs file and found nothing about spectral blades spell range in it. Anyone who know the exact file storing the spell range?
 
i think it's this value you need to change. jubisman can maybe confirm it.
if (CanCast(SNOPower.Wizard_SpectralBlade))
{
return new TrinityPower(SNOPower.Wizard_SpectralBlade, 12f, CurrentTarget.ACDGuid);
}
it's in WizardCombat.cs
 
i think it's this value you need to change. jubisman can maybe confirm it.
if (CanCast(SNOPower.Wizard_SpectralBlade))
{
return new TrinityPower(SNOPower.Wizard_SpectralBlade, 12f, CurrentTarget.ACDGuid);
}
it's in WizardCombat.cs

I think is this value to change :


var bladeRange = Runes.Wizard.ArcaneOrbit.IsActive ? 4f : 15f;

---
I try 5f
 
Having good success with the bladeRange var set to 4f in both cases, bot spends a lot more time closer to mobs with it (or maybe changes in latest Trinity helped since that happened almost at the same time for me). Got up to GR78 now! And hoping I can get the bot to push to GR80 before season ends :)
 
Back
Top