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

EasyJoy

New Member
Joined
Feb 1, 2016
Messages
6
Reaction score
0
Is there any chance to make the bot use twister more often by editing following codes?

// Check to see if we have a signature spell on our hotbar, for energy twister check
bool hasSignatureSpell = (Hotbar.Contains(SNOPower.Wizard_MagicMissile) || Hotbar.Contains(SNOPower.Wizard_ShockPulse) ||
Hotbar.Contains(SNOPower.Wizard_SpectralBlade) || Hotbar.Contains(SNOPower.Wizard_Electrocute));

// Energy Twister SPAMS whenever 35 or more ap to generate Arcane Power
if (!Player.IsIncapacitated && CanCast(SNOPower.Wizard_EnergyTwister) && !ShouldWaitForConventionElement(Skills.Wizard.Ener gyTwister) &&
Player.PrimaryResource >= 25 &&
(!Legendary.EtchedSigil.IsEquipped || Sets.TalRashasElements.IsFullyEquipped || Sets.DelseresMagnumOpus.IsFullyEquipped && !Legendary.Deathwish.IsEquipped) &&
// If using storm chaser, then force a signature spell every 1 stack of the buff, if we have a signature spell
(!hasSignatureSpell || GetBuffStacks(SNOPower.Wizard_EnergyTwister) < 1))
{
Vector3 bestClusterPoint = TargetUtil.GetBestClusterPoint();

const float twisterRange = 50f;
return new TrinityPower(SNOPower.Wizard_EnergyTwister, twisterRange, bestClusterPoint);
 
The bot only use twister for buff. Although the ap is full, it still use spectral blade mostly. Is there any way i can make it use twister more often?
 
(!hasSignatureSpell || GetBuffStacks(SNOPower.Wizard_EnergyTwister) < 1))

Try something greater than one, like 7, 10, 20....worked for me with a certain build
 
I changed the number, and restarted demonbuddy. It works very well now, thank you so much for solving this problem for me :)
 
What build you using this for, and what number did you change it to if I may ask ^^
 
Of course, im using the Slow Time Twister bd by Delsere's Magnum Opus set. I converted the number from 1 to 20, it works very good now.
 
Back
Top