Windmourn New Member Joined Oct 20, 2018 Messages 5 Dec 27, 2018 #1 Sometimes i need to cancel some hot and buff to prevent something so can rb do this?
Freiheit Member Joined Apr 23, 2015 Messages 43 Dec 28, 2018 #2 Something like this should do the trick: Code: var aura = Core.Me.GetAuraById(1204); if(aura != null && !aura.IsDebuff) ChatManager.SendChat(String.Format("/statusoff \"{0}\"", aura.LocalizedName));
Something like this should do the trick: Code: var aura = Core.Me.GetAuraById(1204); if(aura != null && !aura.IsDebuff) ChatManager.SendChat(String.Format("/statusoff \"{0}\"", aura.LocalizedName));