-
Member
Originally Posted by
wloczykij95
Is there any plugin that shows only profitable beasts in right corner? or can I edit it?
you can use the beast plugin: https://www.ownedcore.com/forums/mmo...le-beasts.html ([ExileApi/PoEHelper/POEHUD plugin] Beasts - Easily find profitable beasts!)
just tick the ones that are profitable enough for you
-
Member
Originally Posted by
headman
Yea but it shows only profitable beast when im nearby to them. I would like to just go into portal check if its worth doing and repeat. On the right corner on list every beast is showen.
-
Active Member
Originally Posted by
wloczykij95
Yea but it shows only profitable beast when im nearby to them. I would like to just go into portal check if its worth doing and repeat. On the right corner on list every beast is showen.
This is no longer possible.
-
Post Thanks / Like - 1 Thanks
Sychotix (1 members gave Thanks to malvient for this useful post)
-
Member
Hey will you be adding tinctures to the flask setup for auto activation?
-
Member
Hi everyone, i have a problem with this func "public static void KeyPressRelease(Keys key)". How to stop Key Press when i want to stop?
I put the func KeyPressRelease in a condition (if) but sometime Key still press.
-
★ Elder ★
Originally Posted by
malvient
Related to IconsBuilder/MinimapIcons, Shrine icons (and more importantly labels) never show. I traced it down to line 154 in MinimapIcons.cs:
Code:
if (icon.HasIngameIcon && icon.Entity.Type != EntityType.Monster && icon.Entity.League != LeagueType.Heist)
I'm guessing because shrines already have an ingame icon, it never draws them - but that means it never draws the label either, and the label is really useful.
I changed it to:
Code:
if (icon.HasIngameIcon && icon.Entity.Type != EntityType.Monster && icon.Entity.League != LeagueType.Heist && icon.Entity.Type != EntityType.Shrine)
It draws the label now. Would be great if this was added to the next exileapi release. Strongboxes suffer from the same issue though the label is not quite as important.
I can do a PR on TC_MinimapIcons if you prefer.
Thanks!
Feel free to create a PR.
Originally Posted by
CelerEtAudax
Hey will you be adding tinctures to the flask setup for auto activation?
Not to BFR (it's mostly unmaintained and I don't use it). ReAgent supports tinctures though.
Originally Posted by
manhllinh25
Hi everyone, i have a problem with this func "public static void KeyPressRelease(Keys key)". How to stop Key Press when i want to stop?
I put the func KeyPressRelease in a condition (if) but sometime Key still press.
It's a weird legacy function, if you want control over the duration or anything reasonable, use KeyDown/KeyUp.
-
Post Thanks / Like - 1 Thanks
manhllinh25 (1 members gave Thanks to cheatingeagle for this useful post)
-
Member
I want to make sure that the unique dealer appears when I enter the portal. Is this possible?
-
Member
-
Member
Originally Posted by
overposital
I want to make sure that the unique dealer appears when I enter the portal. Is this possible?
It is not.
-
Member
Hi everyone, Have anyway to read The Name of Unid Unique Item (like Headhunter or Mageblood) ? i using DevTree but cant find.
-
Active Member
Originally Posted by
manhllinh25
Hi everyone, Have anyway to read The Name of Unid Unique Item (like Headhunter or Mageblood) ? i using DevTree but cant find.
parse render resource and compare with visual identities
-
Post Thanks / Like - 1 Thanks
manhllinh25 (1 members gave Thanks to cout00 for this useful post)
-
Member
Originally Posted by
manhllinh25
Hi everyone, Have anyway to read The Name of Unid Unique Item (like Headhunter or Mageblood) ? i using DevTree but cant find.
Using UniqueFinder
-
Post Thanks / Like - 1 Thanks
manhllinh25 (1 members gave Thanks to shuzukuto for this useful post)
-
Member
That is a compiled plugin or a function in devtree? and where can i get it?
-
Member
Originally Posted by
shuzukuto
Using UniqueFinder
That is a compiled plugin or a function in devtree? and where can i get it?
-
Member
Originally Posted by
manhllinh25
That is a compiled plugin or a function in devtree? and where can i get it?
you can try this
GitHub - Letale-vc/UniqueLootHelper: Highlights Labels of specified Unique Items via their Icon Model File.
or use Ninja Price (get-chaos-value)
GitHub - exApiTools/Get-Chaos-Value
both support the function to show unid HH or Mageblood
-
Post Thanks / Like - 1 Thanks
manhllinh25 (1 members gave Thanks to headman for this useful post)