ItemWorth v1.2.0
This update focuses on GUI visibility control, giving server owners more control over where worth lore appears.
Added
- Visibility modes for controlling where item worth lore is shown.
- All mode: show worth lore in every inventory and GUI.
- Player inventory and storage mode: show worth lore in the player inventory and storage containers only.
- Player inventory mode: show worth lore only in the player inventory.
- Excluded GUI title rules to hide worth lore from specific plugin menus or custom GUIs.
- Included GUI title rules to override exclusions for specific GUI titles.
- Flexible GUI title matching with exact, contains, starts-with, and ends-with matching.
Add this to your root config.yml (older configs may not include it yet):
Config
Code:visibility: mode: all excluded-gui-titles: [] included-gui-titles: []
Available visibility modes: all, player-inventory-and-storage, player-inventory
Example: hide worth lore in shop GUIs
Code:visibility: mode: all excluded-gui-titles: - "Shop" - "Auction House" included-gui-titles: []
Example: exclude abc, but allow abcd
Code:visibility: mode: all excluded-gui-titles: - title: "abc" match: contains included-gui-titles: - title: "abcd" match: exact
Rule match options: exact, contains, starts-with, ends-with
Compatibility
- Fully backward compatible with existing setups.
- If the new visibility config is missing, ItemWorth defaults to all.
- Default behavior remains unchanged: worth lore still shows everywhere unless configured otherwise.
- Existing configs do not need to be regenerated.
Thanks for the support and feedback.
ItemWorth v1.1.0
This update focuses on better value readability and more display flexibility.
Added
- Configurable number formats for item worth display.
- Plain mode: 1000000
- Comma mode: 1,000,000
- Compact mode: 1m, 1.23m, 3.21b
- Extended compact suffix support up to vg for very large values.
Add this to your root config.yml (older configs may not include it yet):
Config
Code:number-format: plain
Available values: plain, comma, compact
Compatibility
- Fully backward compatible with existing setups.
- Default behavior remains unchanged (plain is the default mode).
Thanks for the support and feedback.
