TehCheat / PoEHelper

Compiled version of Qvin0000's ExileAPI to make things easy
147 stars 55 forks source link

ItemOnGroundLabel limit 20k #52

Open chewbacca2314 opened 8 months ago

chewbacca2314 commented 8 months ago

Please increase the limits to at least 40k, because there're a lot of cases when people get stucked into the limit of 20k ItemOnGroundLabel elements.

rwdsji commented 8 months ago
  1. Throw ExileCore.dll into your favorite .NET assembly editor.
  2. Navigate to ExileCore.CorePerformanceSettings.
  3. Find the RangeNode that contains MaxGroundItemLabels.
  4. Make the necessary changes, 40k in your case: public RangeNode<int> MaxGroundItemLabels { get; set; } = new RangeNode<int>(5000, 0, 40000);
  5. ???
  6. Profit.
rwdsji commented 8 months ago

Oh wait, the slider isn't actually clamped. Just CTRL + left click on it and type in your desired value.