-
Contributor
Originally Posted by
TehCheat
I changed it before your big merge, pretty sure the merge undid what I changed.
Ok, I see, true.But GitExt said "TehCheat 33 days ago"
Fixed.
-
Member
Is it possible to have a "Player AOE" option or a way to implement it?
What i am really interested is Leap Slam range indicator so people wont be clicking outside of the range making character walk first and only then performing the movement skill.
-
Post Thanks / Like - 1 Thanks
BloodMagic (1 members gave Thanks to mirrorrorrim for this useful post)
-
Banned
i'm looking for that too.
-
Post Thanks / Like - 1 Thanks
ilexgs (1 members gave Thanks to BloodMagic for this useful post)
-
Contributor
Chugging away at learning how to make the menu structure.
-
Post Thanks / Like - 3 Thanks
-
Banned
Originally Posted by
TehCheat
It doesn't exist anymore. vmv nuked it because he didn't have the time to support it.
and where to get the old version?
-
Contributor
Originally Posted by
Treasure_Box
Chugging away at learning how to make the menu structure.
Not bad at all. Can you release quick version with just chicken ?
-
★ Elder ★
Pushed an update that adds a notification when the breach lords spawn, and yes it plays the inception sound. You can just download the config/monster_name_alerts.txt file and replace the one in the HUD\config folder, as it's just a configuration file change.
-
Contributor
Originally Posted by
Treasure_Box
Chugging away at learning how to make the menu structure.

I made a system that allows to add menu items just by adding the Menu attribute, but submenu is not released yet.
So I have 2 variants how to do it (better):
The first idea was:
by path:
Code:
[Menu("RootMenu")]
public ToggleNode HPflask { get; set; }
[Menu("Root Menu/SubMenu 1")] //Sub menu 1 of Root Menu
public RangeNode<int> APHeal { get; set; }
[Menu("Root Menu/SubMenu 2")] //Sub menu 2 of Root Menu
public RangeNode<int> APHeal { get; set; }
But in this case we should rename both sub menu after renaming the parent. Not conveniently.
The second is:
by indicies:
[Menu("NameOfMenu")] //Simple menu
[Menu("NameOfMenu", index)] //Can be a parent for some menu
[Menu("NameOfMenu", index, parent index)]//Parent this menu to other by index of other
Code:
[Menu("Root Menu", 0)]
public ToggleNode HPflask { get; set; }
[Menu("SubMenu 1", 1, 0)] //Sub menu 1 of Root Menu 0
public RangeNode<int> APHeal { get; set; }
[Menu("SubMenu 2", 2, 0)] //Sub menu 2 of Root Menu 0
public RangeNode<int> APHeal { get; set; }
So we just write the name of menu, then index, then parent index.
I think the second is better. True?
Edit:
So in your case it will looks like this:
Code:
[Menu("Auto Log HP Precent", 0)]
public ToggleNode AutoLog { get; set; }
[Menu("Auto Log HP Precent", 1, 0)]
public RangeNode<int> ALPrecent { get; set; }
[Menu("Auto Health Flask", 2)]
public ToggleNode HPflask { get; set; }
[Menu("Auto Health Flask", 3, 2)]
public RangeNode<int> APHeal { get; set; }
[Menu("Auto Mana Flask", 4)]
public ToggleNode ManFlask { get; set; }
[Menu("Auto Health Flask", 5, 4)]
public RangeNode<int> APMana { get; set; }
Last edited by Stridemann; 12-31-2016 at 12:47 PM.
-
Post Thanks / Like - 3 Thanks
-
Contributor
Ok, seems it works fine:

Code:
[Menu("Test Root Menu 1", 1)]
public ToggleNode TestRootMenu1 { get; set; }
[Menu("Test Sub Menu 1-1", 2, 1)]
public RangeNode<float> TestSubMenu11 { get; set; }
[Menu("Test Sub Menu 1-2", 3, 1)]
public ToggleNode TestSubMenu12 { get; set; }
[Menu("Test Sub Menu 1-2-1", 4, 3)]
public ToggleNode TestSubMenu13 { get; set; }
[Menu("Test Sub Menu 1-2-1", 5, 4)]
public ToggleNode TestSubMenu131 { get; set; }
[Menu("Test Sub Menu 1-2-1-1", 6, 5)]
public RangeNode<float> TestSubMenu1311 { get; set; }
Note: Ony ToggleButton can have (draw) submenu's.
I'm gona release it.
PS. Also I optimise the functions calling in external plugins.
Edit: Released.
Last edited by Stridemann; 12-31-2016 at 03:32 PM.
-
Post Thanks / Like - 2 Thanks
-
Contributor
I add a new type of node: EmptyNode. It can be used when we only need to make a sub-group of options and don't use ToggleNode that can confuse some users why it doesn't disable some functionality:

Code:
public sealed class MySettings : SettingsBase
{
public MySettings()
{
Enable = true;
SubMenu1 = false;
SubMenu2 = new RangeNode<int>(0, 0, 10);
SubMenu3 = new ColorNode(Color.Green);
}
[Menu("Simple Menu Holder", 0)]
public EmptyNode MenuHolder { get; set; }
[Menu("Sub Menu 1", 1, 0)]
public ToggleNode SubMenu1 { get; set; }
[Menu("Sub Menu 1", 2, 0)]
public RangeNode<int> SubMenu2 { get; set; }
[Menu("Sub Menu 1", 3, 0)]
public ColorNode SubMenu3 { get; set; }
}
Note: No need to initialise EmptyNode, it can be null.
-
Post Thanks / Like - 2 Thanks
-
Contributor
@Stridemann
Hey thanks, after i pmed you i started to look at PoeHUD.Menu to see what i could do with "child" menus,
but from what I'm reading this would be bad practice, something about spaghetti code (classes interfacing with methods outside of their scope).
Last edited by Treasure_Box; 12-31-2016 at 09:17 PM.
-
Member
Happy New Year cheaters.
I want to thank all those who, through their efforts, contributed to the game looks much more interesting,easy for play.
If i may ask,whether you are planning in the near future to make PoEHUD x86, DirectX 9 with the same parameters, with the same modes like in PoEHUD x64 DirextX 11?
PoEHUD x64 have a lot of really great new stuff,but unfortunately,on x64 client version on game,we cant run Path of Exile Autoflask & AutoQuit,because there is no version for x64 client,there is only version Autoflask for x32 version client of games.
In the hope that someone will answer on my question,i thank in advance
Sorry for my bad English,English is not my national language
-
Member
Originally Posted by
snowhawk
Did something change that forces all breaches to show up in the preload alerts in all zones (including hideout)? Using the latest public x64 build run from a clean directory.
Attachment 47638
You are seeing all the breach preload alerts because you have Vaal Breach equipped.
-
Post Thanks / Like - 1 Thanks
TehCheat (1 members gave Thanks to gca8NsoK1Fo5XSKvTv7D for this useful post)
-
★ Elder ★
Originally Posted by
misterhacker
Happy New Year cheaters.
I want to thank all those who, through their efforts, contributed to the game looks much more interesting,easy for play.
If i may ask,whether you are planning in the near future to make PoEHUD x86, DirectX 9 with the same parameters, with the same modes like in PoEHUD x64 DirextX 11?
PoEHUD x64 have a lot of really great new stuff,but unfortunately,on x64 client version on game,we cant run Path of Exile Autoflask & AutoQuit,because there is no version for x64 client,there is only version Autoflask for x32 version client of games.
In the hope that someone will answer on my question,i thank in advance
Sorry for my bad English,English is not my national language
I don't see the reason to put in the effort to do so. x86 version won't be around forever and it's silly, imo, to put development time into it. I'll keep the offsets, and simple things to port over (like the preload alerts sounds and Breachlord proximity alerts), updated, but I see no reason to put actual development time into it.
Also, I pushed out an update to the master (x86) branch. I've added all of the Breachlord preloads, new alert sounds, Breachlord proximity alerts, and Breach chest icons. There was some code change, so you'll need to update the exe and grab the files from the config folder to get everything. Or you can just download the full thing and start fresh. Link in signature.
-
Post Thanks / Like - 3 Thanks
-
Member
Ty TehCheat,i really whish you all the best in new 2017.