• Visit Rebornbuddy
  • Can Rebornbuddy cancel aura effect?

    Discussion in 'Community Developer Forum' started by Windmourn, Dec 27, 2018.

    1. Windmourn

      Windmourn New Member

      Joined:
      Oct 20, 2018
      Messages:
      5
      Likes Received:
      0
      Trophy Points:
      1
      Sometimes i need to cancel some hot and buff to prevent something

      so can rb do this?
       
    2. Freiheit

      Freiheit Member

      Joined:
      Apr 23, 2015
      Messages:
      43
      Likes Received:
      26
      Trophy Points:
      18
      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));
      
       

    Share This Page