engine packets - magemonkeystudio/divinity GitHub Wiki

๐Ÿ“ฆ Engine Config: packets

This section of engine.yml controls Divinityโ€™s internal packet handler, which enables certain visual and performance-related enhancements.

These settings are considered advanced and should be adjusted with care, especially on performance-sensitive servers.


๐Ÿ”‘ Options

Key Description
enabled Globally enables or disables packet-based feature hooks.
modules.glow-color If true, item glows (used in Item Hints) will match the name color of the item.
modules.reduce-damage-particles Reduces the number of heart particles during high-damage combat to improve FPS.

๐Ÿงช Example

packets:
  enabled: true
  modules:
    glow-color: true
    reduce-damage-particles: true

๐Ÿ’ฌ Notes

  • These features rely on intercepting game packets and may conflict with other plugins that modify client visuals.
  • glow-color enhances the Item Hints module by giving each hint glow a unique tint based on item tier or rarity.
  • reduce-damage-particles is useful for servers with high-damage values or large mob battles.

๐Ÿ”— Related