awakened-poe-trade icon indicating copy to clipboard operation
awakened-poe-trade copied to clipboard

Cluster jewel pricing

Open zaafar opened this issue 6 months ago • 2 comments

When it comes to cluster jewels (small, medium or large). Item level is very important. Some cluster jewels cost a lot at lower item level and some at higher item level.

Setting the default to max (here) causes incorrect pricing.

While user can update it but a lot of new players wouldn't.

so my suggestion is to update that code and use the following breakpoints as MAX value when item class is cluster jewel.

1, 50, 68, 73, 78, 84

so if cluster jewel item level is 1-49, max should default to 49 if cluster jewel item level is 50-67, cluster jewel max should default to 67 and so on...

e.g. code

itemlevel >= 84 ? max : itemlevel >= 75 ? 83 : itemlevel >= 68 ? 74 : itemlevel >= 50 ? 67 : 49

unfortunately other classes mods have different item level requirements. doing this for all of them would be PITA process.

zaafar avatar Aug 06 '24 21:08 zaafar