외국포럼에서 해결했습니다.
이것의 문제는 돌개빌드는 DMO 즉, 델세르셋트효과가 인식되어야 발동되었습니다.
해결법은 아래와 같습니다.
Open DB/Plugins/Trinity/Combat/Abilities/WizardCombat.cs
파일을 찾으세요.
search for EnergyTwister and edit the stack count from 1 to 8.
마지막줄 카운트1을 8로. 경험상 9나 10하면 딱좋습니다.
너무 올려두면 비전력이 부족합니다. -_-;;;
// 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 && !Settings.Combat.Wizard.NoEnergyTwister &&
// 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) < 8))