Procurement-PoE / Procurement

Path Of Exile Character & Stash Management Tool
Artistic License 2.0
331 stars 133 forks source link

Include orbs to pricing #1159

Open CabPiz opened 9 months ago

CabPiz commented 9 months ago

Hello!

I would like to have more currencies to put the price in the items: Glassblower's Bauble Instilling Orb Veiled Chaos Orb Awakened Sextant

So I could receive these currencies when selling my items.

Thank you very much!

Bellatrixie commented 9 months ago

It's quite easy to add to the project. It has OrbType.cs where you add AwakenedSextant as example. Then in both: SetTabBuyoutViewModel.cs
SetBuyoutViewModel.cs add "Awakened Sextant" to the list.

And then in CurrencyAbbreviationMap.cs just add this: AddItem("Awakened Sextant", "awakened-sextant"); where "awakened-sextant" is format used on poe forum to display spicific currency. https://www.pathofexile.com/trade/about

The hardest part is to install VS Code with C# development tools and then build the solution.