Fortherandom
New Member
- Joined
- Jul 12, 2014
- Messages
- 3
- Reaction score
- 0
Can we get this or something like it with better logic added with next patch for Wiz combat.cs
Without it the bot tends to stand around for no reason when it can just spam torrent to get resource.
Probably should add it to the other abilities it affects as well, but since no one is currently using those I didnt bother.
Without it the bot tends to stand around for no reason when it can just spam torrent to get resource.
Code:
// Arcane Torrent
if (!Player.IsIncapacitated && CanCast(SNOPower.Wizard_ArcaneTorrent) && !ShouldWaitForConventionElement(Skills.Wizard.ArcaneTorrent) &&
(Player.PrimaryResource >= 16 || Legendary.HergbrashsBinding.IsEquipped)) //when HergbrashsBinding is equipped it acts a generator for the most part so ignore resource.
{
return new TrinityPower(SNOPower.Wizard_ArcaneTorrent, 40f, CurrentTarget.ACDGuid);
}
Probably should add it to the other abilities it affects as well, but since no one is currently using those I didnt bother.






