Minikan1987 0 Posted September 19, 2020 Share Posted September 19, 2020 Hey, trying to fine tune some profiles to my preferences, but im running into this problem. When it looks for a buff ObjectManager.Target.BuffTimeLeft(new List<uint> { 84617 }) < 2000 it doesn't check if the buff is by me or not, how can i fix this? Link to comment https://wrobot.eu/forums/topic/12525-c-target-buff-by-me/ Share on other sites More sharing options...
Talamin 138 Posted September 19, 2020 Share Posted September 19, 2020 You can make something like this: public static bool DebuffCheckOwner(Spell spell, bool owner = true) { List<Aura> DebuffList = ObjectManager.Target.GetAllBuff(); Aura aura = null; if(owner) { aura = DebuffList.FirstOrDefault(s => s.GetSpell.Name == spell.Name && s.Owner == ObjectManager.Me.Guid); if(aura != null) { return true; } } return false; } Link to comment https://wrobot.eu/forums/topic/12525-c-target-buff-by-me/#findComment-59987 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now