PoEHUD Overlay Updated menu

Shout-Out

User Tag List

Page 378 of 461 FirstFirst ... 278328374375376377378379380381382428 ... LastLast
Results 5,656 to 5,670 of 6913
  1. #5656
    stfufag's Avatar Active Member
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    294
    Thanks G/R
    46/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    U can easily make a auto logout using poehud x32 bit without plugin support.
    also, try requesting bot developer to make a auto-login feature ( which would be easy as hell for the dev ).
    If I knew anything about coding I probably would

    What do you mean with autologin?

    PoEHUD Overlay Updated
  2. #5657
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    i mean ask dev for auto-logout feature.
    If I did not reply to you, it mean the question you are asking is stupid.

  3. Thanks darkfuryex (1 members gave Thanks to GameHelper for this useful post)
  4. #5658
    darkfuryex's Avatar Member
    Reputation
    1
    Join Date
    Feb 2015
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    Added support for stash panel buttons and etc
    hey man , do you have the link for the latest version of PoEHUD? the one on the main post seems to be posted and edited last on 2016, where is the link to your most recent updated ones? thanks!!

    EDIT: nevermind, i found it, seems like i was using 32bit all along and tons of function was not working lol..thanks for your awesome continual updates zaafar!

    EDIT2: hey Zaafar do you know how to run PoE in 64bit? I'm currently using steam version and its only running in 32bit, I'm trying to run 64bit so i can use PoEHUD 64bit version...

    thanks!
    Last edited by darkfuryex; 06-18-2017 at 12:36 AM.

  5. #5659
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    use directX11 from settings.
    If I did not reply to you, it mean the question you are asking is stupid.

  6. #5660
    darkfuryex's Avatar Member
    Reputation
    1
    Join Date
    Feb 2015
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Apologies for double posting!

    hey does anyone knows how to run PoE in 64bit? I'm currently using steam version and its only running in 32bit, I'm trying to run 64bit so i can use PoEHUD 64bit version...

    thanks!

  7. #5661
    weedworm31's Avatar Member
    Reputation
    7
    Join Date
    Mar 2009
    Posts
    26
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by darkfuryex View Post
    Apologies for double posting!

    hey does anyone knows how to run PoE in 64bit? I'm currently using steam version and its only running in 32bit, I'm trying to run 64bit so i can use PoEHUD 64bit version...

    thanks!

    use dx11 mode in the options menu of PoE. the game only runs in x64 with dx11 enabled.

  8. #5662
    darkfuryex's Avatar Member
    Reputation
    1
    Join Date
    Feb 2015
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    i mean ask dev for auto-logout feature.
    hey man is there any current working plugin that has auto log out feature when low on health?

    thanks!

  9. #5663
    Stridemann's Avatar Contributor
    Reputation
    227
    Join Date
    Oct 2016
    Posts
    248
    Thanks G/R
    29/188
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Technical: PoeHUD Plugins new settings control nodes

    I add some new nodes that can be used in poehud settings:

    HotkeyNode:
    for holding and selecting keyboard key.


    List Node:
    selecting one from multiple variants.
    All the values adding through code and can be changed in any moment (dynamical menu).


    ButtonNode:
    Simple button (not sure can be useful, but sometimes its requed for debug).


    Usage example:

    Code:
        
    using PoeHUD.Hud.Settings;
    using PoeHUD.Plugins;
    using System.Windows.Forms;
    
        public class MyPluginSettings : SettingsBase
        {
            public MyPluginSettings()
            {
                Enable = true;
                TestHotkey = Keys.Q;
                ListNode = new ListNode();
                ButtonNode = new ButtonNode();
            }
            [Menu("Hotkey Node")]
            public HotkeyNode TestHotkey { get; set; }
    
            [Menu("List Node")]
            public ListNode ListNode { get; set; }
    
            [Menu("Button Node")]
            public ButtonNode ButtonNode { get; set; }
        }

    Code:
    using System.Collections.Generic;
    using PoeHUD.Plugins;
    
        public class MyPlugin : BaseSettingsPlugin<MyPluginSettings>
        {
            public override void Initialise()
            {
                var listValues = new List<string>() { "Option 1", "Option 2", "Option 3", "Option 4" };
                Settings.ListNode.SetListValues(listValues);
                Settings.ListNode.OnValueSelected += NewVal;
    
                Settings.ButtonNode.OnPressed += delegate { LogMessage("Pressed", 1); };
            }
    
            private void NewVal(string value)
            {
                LogMessage(value, 5);
            }
    
            public override void Render()
            {
                LogMessage("Key is: " + Settings.TestHotkey.Value, 0);
            }
        }

  10. Thanks Preaches, GameHelper, Treasure_Box (3 members gave Thanks to Stridemann for this useful post)
  11. #5664
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Awesome job man!!!!
    And with getallstashnames function now all inventory/stash plugins can use stash names rather than fking 12345
    If I did not reply to you, it mean the question you are asking is stupid.

  12. Thanks Stridemann (1 members gave Thanks to GameHelper for this useful post)
  13. #5665
    Treasure_Box's Avatar Contributor
    Reputation
    155
    Join Date
    Sep 2014
    Posts
    189
    Thanks G/R
    63/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you!

  14. #5666
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    @tehcheat @strider

    I am thinking that passive skill planner should be made part of poehud.
    Even if we keep it as external plugin we can copy the dll/source inside the plugin folder of poehud.


    unlike inventory plugin, it is not dependent on any external source of images. So I am sure it's a stable plugin.
    If I did not reply to you, it mean the question you are asking is stupid.

  15. #5667
    Stridemann's Avatar Contributor
    Reputation
    227
    Join Date
    Oct 2016
    Posts
    248
    Thanks G/R
    29/188
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    zaafar thanks for new offsets))

    I want to make some changes in StashElement:
    1) Public function names should always starts with big letter getStashName -> GetStashName (apply to all functions)
    2) getStashInventory(int number) -> GetStashInventoryByIndex(int index) (coz now we have also GetStashInventoryByName)
    3) getAllStashName() -> GetAllStashNames()

    One more function is missing (I just add it) - GetStashInventoryByName(string name); (but in other hand some inv. tabs can has the same names, hmm..)

  16. #5668
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Yeah I am not really good with naming convention so go ahead with it.

    In case there are more than 1 inventory with same name, return both. So return a list of inventories
    If I did not reply to you, it mean the question you are asking is stupid.

  17. #5669
    Stridemann's Avatar Contributor
    Reputation
    227
    Join Date
    Oct 2016
    Posts
    248
    Thanks G/R
    29/188
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    In case there are more than 1 inventory with same name, return both. So return a list of inventories
    From a point of view of programming- there is no cense in that coz there is no way to distinguish them and selech which one we need.

  18. #5670
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by Stridemann View Post
    From a point of view of programming- there is no cense in that coz there is no way to distinguish them and selech which one we need.
    actually there is, suppose you are using inventory "chaos reciepy" to store all your chaos reciepy items....now u lookup to see all inventories containing chaos reciepy as title, and u get 2-3. now u can use a for loop and if 1 is full, u can use other one, and so on...

    hope that make any sense.


    so in this way, a plugin developer can decide if he only want to use 1st one, if he want to use 2nd when first is full or if he randomly select 1 of the both.
    If I did not reply to you, it mean the question you are asking is stupid.

Similar Threads

  1. [Release] PoeHUD - Overlay for Path of Exile
    By Coyl in forum PoE Bots and Programs
    Replies: 1870
    Last Post: 01-27-2015, 02:28 AM
  2. [Tool] Exp per hour overlay (needs offset update)
    By moustache in forum PoE Bots and Programs
    Replies: 15
    Last Post: 11-08-2013, 09:00 PM
  3. Site updates 6/19/2006
    By Matt in forum OC News
    Replies: 1
    Last Post: 06-19-2006, 08:48 AM
  4. Updated(FuxxoZ|WoWGlider)
    By ih8blizz in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 06-16-2006, 09:24 PM
  5. New Update on the Patch!
    By Dwarpy in forum World of Warcraft General
    Replies: 1
    Last Post: 05-22-2006, 12:50 AM
All times are GMT -5. The time now is 09:03 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search