Glint Module
Overview
The glint module allows you to control, display, and override a custom glint effect on an item.
- Adds the ability to add glint on unenchanted items.
- Adds the ability to set custom glint colors.
This module is only supported for 1.7 to 1.12 versions of Lunar Client.
![]()
Integration
How to set custom glint of an item
You set a custom NBT, with the tag {lunar:{glint:value}} then set the {value} to the HEX color (as an string) format or the ARGB color (as an integer) you want to display on the item.
Examples:
{lunar:{glint:-65535}}will display a light blue glint.{lunar:{glint:"#FFFF00"}}will display a yellow glint.
Sample Code
Explore each integration by cycling through each tab, to find the best fit for your requirements and needs.
Custom Glint
/summon item ~ ~1 ~ {Item:{id:"minecraft:diamond_helmet",Count:1b,components:{"minecraft:custom_data":{lunar:{glint:"#FF5733"}}}}}
/summon item ~ ~1 ~ {Item:{id:"minecraft:diamond_helmet",Count:1b,components:{"minecraft:custom_data":{lunar:{glint:"#33FF57"}}}}}
/summon item ~ ~1 ~ {Item:{id:"minecraft:diamond_helmet",Count:1b,components:{"minecraft:custom_data":{lunar:{glint:"#3357FF"}}}}}
/summon item ~ ~1 ~ {Item:{id:"minecraft:diamond_helmet",Count:1b,components:{"minecraft:custom_data":{lunar:{glint:"#FFD700"}}}}}
/summon item ~ ~1 ~ {Item:{id:"minecraft:diamond_helmet",Count:1b,components:{"minecraft:custom_data":{lunar:{glint:"-16711936"}}}}}