PoeHUD - Overlay for Path of Exile menu

User Tag List

Page 77 of 125 FirstFirst ... 27737475767778798081 ... LastLast
Results 1,141 to 1,155 of 1871
  1. #1141
    harrydom's Avatar Member
    Reputation
    3
    Join Date
    Mar 2014
    Posts
    58
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by se7enek View Post
    just copy paste from preload config to monster_name_alerts if u need so, but as well u see on map big "cyan" cross

    copy-paste into monster_name_alerts.txt
    Code:
    Metadata/NPC/Missions/Wild/Dex, Tora, Master of the Hunt
    Metadata/NPC/Missions/Wild/DexInt, Vorici, Master Assassin
    Metadata/NPC/Missions/Wild/Int, Catarina, Master of the Dead
    Metadata/NPC/Missions/Wild/Str, Haku, Armourmaster
    Metadata/NPC/Missions/Wild/StrDex, Vagan, Weaponmaster
    Metadata/NPC/Missions/Wild/StrDexInt, Zana, Master Cartographer
    Metadata/NPC/Missions/Wild/StrInt, Elreon, Loremaster
    and u see i removed "Area contains" so it will just show names of masters when ure close.
    I'm sorry that didn't work for me. Have you tested it? maybe there's something else I should change?

    PoeHUD - Overlay for Path of Exile
  2. #1142
    FrankTheCrazy's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by harrydom View Post
    I'm sorry that didn't work for me. Have you tested it? maybe there's something else I should change?
    I don't think it will work

  3. #1143
    harrydom's Avatar Member
    Reputation
    3
    Join Date
    Mar 2014
    Posts
    58
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FrankTheCrazy View Post
    I don't think it will work
    Is it possible to add it? farming masters is a pain in the neck, so that would be very helpful.

  4. #1144
    FrankTheCrazy's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by harrydom View Post
    Is it possible to add it? farming masters is a pain in the neck, so that would be very helpful.
    They are already on pre-load and at 200m they are displayed as a Blue X on the minimap and overlay map...unless Vagan who is usually Red

  5. #1145
    fabcard's Avatar Member
    Reputation
    10
    Join Date
    Jun 2013
    Posts
    137
    Thanks G/R
    38/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey friends,

    Is the PoeHud site down or the problem is here on my end?
    Thanks.

  6. #1146
    MrArith's Avatar Member
    Reputation
    8
    Join Date
    Nov 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to add an item alert for quality items? For example I want to have it alert me when ALL 10% quality weapons drop.

  7. #1147
    nadner's Avatar Member
    Reputation
    2
    Join Date
    Feb 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Website is now a russian website?

  8. #1148
    moocow01's Avatar Member
    Reputation
    1
    Join Date
    Dec 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Website is screw up... again... Great move taking the download link off of this post.

  9. #1149
    IeUz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2011
    Posts
    84
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's due leechers like you.

  10. #1150
    blackpc's Avatar Member
    Reputation
    4
    Join Date
    Jul 2014
    Posts
    48
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still Fantastic work your doing Coyl!! awesome.

  11. #1151
    doragon's Avatar Contributor
    Reputation
    80
    Join Date
    Nov 2014
    Posts
    176
    Thanks G/R
    9/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    added offsets for item tooltip in chat;
    showing mods and level for items on ground:

    InventoryItemIcon.cs:
    Code:
      public class InventoryItemIcon : Element
        {
            private readonly Func<Element> inventoryItemTooltip;
            private readonly Func<Element> itemInChatTooltip;
            private readonly Func<ItemOnGroundTooltip> toolTipOnground;
            private ToolTipType? toolTip;
    
            public InventoryItemIcon()
            {
                toolTipOnground = () => Game.IngameState.IngameUi.ItemOnGroundTooltip;
                inventoryItemTooltip = () => ReadObject<Element>(Address + 0x88C);
                itemInChatTooltip = () => ReadObject<Element>(Address + 0x888);
            }
    
            private ToolTipType ToolTipType
            {
                get { return (ToolTipType) (toolTip ?? (toolTip = GetToolTipType())); }
            }
    
    
            public Element Tooltip
            {
                get
                {
                    switch (ToolTipType)
                    {
                        case ToolTipType.ItemOnGround:
                            return toolTipOnground();
                        case ToolTipType.InventoryItem:
                            return inventoryItemTooltip();
                        case ToolTipType.ItemInChat:
                            return itemInChatTooltip();
                    }
                    return null;
                }
            }
    
            public Entity Item
            {
                get
                {
                    switch (ToolTipType)
                    {
                        case ToolTipType.ItemOnGround:
                            return toolTipOnground().Item;
                        case ToolTipType.InventoryItem:
                            return ReadObject<Entity>(Address + 0xb10);
                    }
                    return null;
                }
            }
    
            private ToolTipType GetToolTipType()
            {
                Element tlTipOnground = toolTipOnground().ToolTip;
                if (tlTipOnground != null && tlTipOnground.IsVisible)
                    return ToolTipType.ItemOnGround;
                
                //if (itemInChatTooltip() != null && itemInChatTooltip().IsVisible)
                //    return ToolTipType.ItemInChat;
    
                if (inventoryItemTooltip() != null)
                    return ToolTipType.InventoryItem;
                return ToolTipType.None;
            }
        }
    
        public enum ToolTipType
        {
            None,
            InventoryItem,
            ItemOnGround,
            ItemInChat
        }
    new file ItemOnGroundTooltip.cs
    Code:
    public class ItemOnGroundTooltip : Element
        {
            public Entity Item
            {
                get
                {
                    var address = M.ReadInt(Address + OffsetBuffers, 0, 0x964, 0x974);
                    var entity = GetObject<Entity>(address);
                    return entity;
                }
            }
    
            public Element ToolTip
            {
                get
                {
                    return GetChildAtIndex(0);
                }
            }
        }
    updating offset IngameUIElements.cs
    Code:
    public ItemOnGroundTooltip ItemOnGroundTooltip
            {
                get { return ReadObjectAt<ItemOnGroundTooltip>(20 + 0x208); }
            }
    Happy New Year)

  12. #1152
    Hargan's Avatar Member
    Reputation
    1
    Join Date
    Dec 2014
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can somebody upload fixed .exe please?

  13. #1153
    Biteme360's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So unfortunately the website is down for w.e reasons. But even after the latest PoE update everything so far that I've tested seems to work. So not that much need for concern. Unless you didnt get a chance to download the lastest version :/ .

  14. #1154
    harrydom's Avatar Member
    Reputation
    3
    Join Date
    Mar 2014
    Posts
    58
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those looking for a working version, this is what's working for me. MEGA. It's not the most recent version (I think I missed the latest update), but it's currently working well with the latest poe patch.

  15. #1155
    Sharkeeper's Avatar Banned CoreCoins Purchaser
    Reputation
    105
    Join Date
    Nov 2012
    Posts
    319
    Thanks G/R
    1/17
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by harrydom View Post
    For those looking for a working version, this is what's working for me. MEGA. It's not the most recent version (I think I missed the latest update), but it's currently working well with the latest poe patch.
    aha

    https://www.virustotal.com/en-gb/fil...5c1c/analysis/

Similar Threads

  1. [Release] ExileHUD - External overlay for Path of Exile (work in progress)
    By Evozer in forum PoE Bots and Programs
    Replies: 1131
    Last Post: 04-04-2015, 05:14 PM
  2. [Buying] Looking for path of exile high lvl account
    By kevel1 in forum PoE Buy Sell Trade
    Replies: 0
    Last Post: 01-29-2013, 09:46 PM
  3. [Selling] Dota 2 cd-key or trade for Path of Exile
    By neepz in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 01-13-2013, 11:22 AM
  4. [Trading] Dota2 beta keys for Path of Exile beta keys
    By shaunffs in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 12-13-2012, 04:20 PM
  5. [Trading] 20m D3 Gold for Path of Exiles Beta Key
    By Jam3z in forum Diablo 3 Buy Sell Trade
    Replies: 0
    Last Post: 07-31-2012, 05:30 PM
All times are GMT -5. The time now is 09:49 PM. 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