-
Contributor
Originally Posted by
omnicrunch
How do you even find simple things like "to strength" or "+1 to lightning gems"? The steps and conditions is easy to figure out, but getting the right mod name seems like rocket science. I thought its as easy as adding "+# to Strength" to the condition but apparently its not. And I dont understand the txt examples, I thought I could export a emulated item from craftofexile, save it as txt and import?
Played with it some more and an easier way is to just search the translation property of the mod. If you want just higher tiers, check the value1 property for the mods exact value. Use poedb to get the translated mod names if you don't know them.
+X to Strength
Code:
ModsInfo.ExplicitMods.Any(x => x.Translation.EndsWith("to Strength") && x.Value1 >= 33)
+X to Level of all Lightning Skill Gems
Code:
ModsInfo.ExplicitMods.Any(x => x.Translation.EndsWith("Lightning Skill Gems") || x.Translation.EndsWith("all Skill Gems"))
No clue about craftofexile importing.
Last edited by snowhawk; 1 Day Ago at 11:36 AM.
-
Post Thanks / Like - 1 Thanks
omnicrunch (1 members gave Thanks to snowhawk for this useful post)
-
Active Member
Originally Posted by
NoodlesAreTheBest
This plugin comes built-in with current releases, but its also missing some GitHub links.
For example, PressMyPetals, MapIcons (alternative to MiniMapIcons), UniqueFinder, MapHighlight.
Are there any other collections for all the GitHubs, or should I go contribute new links to InstantSC so he can add them?
It could be good idea to compile list of new plugins and request to add them. I don't have time to do this right now, but I have tons of starred repos on gitHub and could prepare one. I am open for sugesstions.
Also: its probably time to clean up and update preloads.txt file too.
Last edited by EthEth; 1 Day Ago at 12:36 PM.
Reason: Added preload comment
My post was helpful? Consider using Thank you!
We are here together, be part of community, help others and get helped by others

-
Post Thanks / Like - 1 Thanks
-
Member
Originally Posted by
EthEth
It could be good idea to compile list of new plugins and request to add them. I don't have time to do this right now, but I have tons of starred repos on gitHub and could prepare one. I am open for sugesstions.
Also: its probably time to clean up and update preloads.txt file too.
I am looking forward for the new plugins compilation. Also if you can guide me to where can I find any plugin which can preload merc type. for eg infamous kineticist?
-
Active Member
Plugins list:
GiantCounter
GitHub: GitHub - ExiledWriter/GiantCounter: Plugin for ExileAPI to count giant exiles
GitHub Fork worth mentioning: GitHub - cesarpescini/GiantCounter: Plugin for ExileAPI to count giant exiles
Author: @uncledolan / ??? (please mention author of more current fork)
Post: mmo...s-rituals.html
Description: It will count all giant exiles either on the screen or within a certain radius of ritual altars. Default range is 1000, which seems to be the correct radius of the altar itself. Also draws a semitransparent circle around the altar if you want.
HighlightMapEnchants
GitHub: GitHub - Woombass/HighlightMapEnchants
Author: @CeliborCrash
Post: mmo...penchants.html
Description: Kirac missions support and reroll. Plugin draws a filled color box on map, that contains einhar or sacred grove.
Beasts
GitHub: GitHub - poplug/Beasts: [ExileApi/PoEHelper/POEHUD plugin] Beasts - Easily find profitable beasts!
Author: @PoThePlug
Post: mmo...le-beasts.html
GitHub fork (most up to date): https://github.com/sychotixdev/Beasts by @Sychotix
Desciption: Beasts tracker with pricing. Check Sunchotix fork and original forum post for more info!
Unique item finder
GitHub: https://github.com/Relvl/POE_API_UniqueFinder
Author: @DKing
Post: mmo...em-finder.html
Description: A plugin for ExileApi, than can highlight desired unidentified unique items like Headhinter and Mageblood in your screen. Somewhat similar to what current ninja pricer does.
MapIcons
GitHub: https://github.com/diesal/MapIcons_ExileAPI
Author: @diesall
Post: https://www.ownedcore.com/forums/mmo...pi-plugin.html
Description: More customizable version of map icons delivered with ExileAPI.
Press My Petals
GitHub: https://github.com/YoBii/PressMyPetals
Author: TBD
Description: Auto-use petals abilities when conditions are met
WhereTheWispsAt
GitHub: https://github.com/EthSharingIsCaring/WhereTheWispsAt
Author: (very small modifications by me, plugin credits to DetectiveSquirrel
Description: Modified plugin showing Whisps, so it also shows memory petals.
WheresMyShitMapsAt-PoE1
GitHub: https://github.com/doubleespressobro...hitMapsAt-PoE1
Author: TBD
Description: More advanced map mods plugin. You set up bad and good mods, map background changes to red / green when at least one given mod is detected.
MercScanner
GitHub: https://github.com/exApiTools/MercScanner
Author: ExApiTools (??)
Description: Show merc's skills and highlights them if they are marked as looked after.
(I skipped here more technical plugins - InputHuminiser, data exporters, item filter inspector, etc...).
Nice repository of pluging is available here: https://github.com/exApiTools. You guys are awesome!
Last edited by EthEth; 3 Hours Ago at 07:02 AM.
My post was helpful? Consider using Thank you!
We are here together, be part of community, help others and get helped by others

-
Post Thanks / Like - 7 Thanks