Does the Buffs of Set work? menu

User Tag List

Results 1 to 8 of 8
  1. #1
    qwerty.56's Avatar Member
    Reputation
    3
    Join Date
    Apr 2017
    Posts
    17
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Does the Buffs of Set work?

    How to find out whether this or that Set is dressed and which buff operates for 2.4 or 6 items?

    Does the Buffs of Set work?
  2. #2
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i guess youd have to map them manually. but im just 90% sure^^

  3. #3
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    You have to know the set sno in order to "detect" if it is equipped.

    Code:
    static class MyUtilities
    {
    	public static bool IsEquipped(this ItemLocation location)
    	{
    		return location >= ItemLocation.Head && location <= ItemLocation.Neck;
    	}
    ...
                    // Somewhere in your code...
                    var items = Hud.Game.Items.Where(item => item.Location.IsEquipped());
                    foreach (var item in items)
                    {
                        if (item.SetSno == 1113279415) Hud.Debug(string.Format("Bones of Rathma"));
                        if (item.SetSno == 1113279417) Hud.Debug(string.Format("Grace of Inarius"));
                        if (item.SetSno == 1113279419) Hud.Debug(string.Format("Jesseth Arms"));
                    }
    I don't know how bufs work but you can detect if some buf is active like this:
    Code:
    var p = Hud.Sno.SnoPowers;
    uint powerSno = p.Necromancer_Passive_BloodIsPower.Sno;
    int iconIndex = 0;
    bool hasPower = Hud.Game.Me.Powers.BuffIsActive(powerSno, iconIndex);

  4. #4
    qwerty.56's Avatar Member
    Reputation
    3
    Join Date
    Apr 2017
    Posts
    17
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    JarJarD3, where did you get these values (1113279415,1113279417,1113279419) ???And on sets DH there is???

  5. #5
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Lucky for you I happen to play DH so here's the set sno's:
    // Demon Hunter Sets
    Code:
    { 1376223095, Tuple.Create("Danetta's Hatred", new List<uint> { 3141402378,3141366441, }) }, // #2
    { 2328093147, Tuple.Create("Enbodiment of the Marauder", new List<uint> { 3493277878,2058465375,826081525,2301868309,2313271477,258999270, }) },
    { 1376366843, Tuple.Create("Natalya's Vengeance", new List<uint> { 221809693,334449276,3107208639,3141438315,1941287734,4088810343,4110193821, }) }, // #7
    { 3709730243, Tuple.Create("The Shadow's Mantle", new List<uint> { 2059543485,827159635, }) },
    { 2328092884, Tuple.Create("Unhallowed Essence", new List<uint> { 258855259,2058321364,825937514, }) },
    I created a plugin for me that watches all items I get.
    Started this a few days ago so it is not complete at all.
    First number is the set sno you are looking for.
    Sno's in the list are item sno's belonging to this set. As you see this is not complete - and it might be that I ever need these!

  6. #6
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    BTW, I'n not sure if the list is definitive.
    For some items there are more than one sno - due to some historical reasons as items get newer versions...
    Same might apply to set items as well?
    But anyway latest drops should have the latest sno's.

  7. #7
    qwerty.56's Avatar Member
    Reputation
    3
    Join Date
    Apr 2017
    Posts
    17
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Found
    TheShadowMantle
    6 - Hud.Game.Me.Powers.BuffIsActive(444522)
    4 - Hud.Game.Me.Powers.BuffIsActive(318876)
    2 - Hud.Game.Me.Powers.BuffIsActive(318386)

    THX JackCeparou !!!!!!
    A list of all the sets can be viewed here:
    JackCeparouCompass/SetBonusPowers.tsv at master * JackCeparou/JackCeparouCompass * GitHub

  8. #8
    gjuz's Avatar Contributor
    Reputation
    121
    Join Date
    Mar 2017
    Posts
    228
    Thanks G/R
    49/118
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by qwerty.56 View Post
    this file is 10 month old, which means if the set bonus was changed during that time, is has a new buff_sno

    greetz gjuz

Similar Threads

  1. What does the contents of this thread mean?
    By #ClumsyWizard in forum Community Chat
    Replies: 2
    Last Post: 06-04-2010, 07:40 AM
  2. Does the 'Scroll of Resurrection' work for WotLK accounts?
    By [Blackstorm] in forum World of Warcraft General
    Replies: 3
    Last Post: 04-15-2010, 08:22 PM
  3. [Help]how to get the buff of mount(bird or dragon..) ?
    By j121780im in forum WoW Memory Editing
    Replies: 10
    Last Post: 03-02-2009, 09:03 AM
  4. Does the youtube scams actually work anymore?
    By rded in forum WoW Scam Prevention
    Replies: 6
    Last Post: 08-30-2008, 01:03 AM
All times are GMT -5. The time now is 08:55 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search