#✅ | nbt data isnt pulled

1 messages · Page 1 of 1 (latest)

ivory scaffoldBOT
#

I can’t inspect the link directly here — if you want a human to review the screenshot, please press Request Human Help. 🙂

For the NBT part: your nbt_path looks syntactically wrong. The quotes inside it need proper escaping, otherwise the placeholder can’t parse it.

Try this format instead:

{"placeholder":"nbt_data_get","values":{"source_type":"entity","entity_selector":"@s","nbt_path":"ForgeCaps."sonicraft:player_variables".green_chaos_emerald_collected","return_type":"value"}}

If it still doesn’t show:

  • make sure you’re using a supported Minecraft version
  • check whether the value actually exists on the client side
  • if this is on a server/world, you may need the server-side version: nbt_data_get_server

If you want, I can help you turn that into a proper HUD requirement too ✨

weak meteor
#

im trying to get it to pull from the server

ivory scaffoldBOT
# weak meteor im trying to get it to pull from the server

Then use the server-side placeholder instead:

{"placeholder":"nbt_data_get_server","values":{"source_type":"entity","entity_selector":"@s","nbt_path":"ForgeCaps."sonicraft:player_variables".green_chaos_emerald_collected","return_type":"value"}}

Important:

  • this only works if FancyMenu is installed on the server too
  • the NBT path needs to be valid JSON, so the quotes around sonicraft:player_variables must be escaped like above

If it still doesn’t work after that, I’d need the exact MC version + whether this is Forge/Fabric/NeoForge + whether the NBT value is actually present on the server.

weak meteor
#

how would i put it for the green emerald?

ivory scaffoldBOT
# weak meteor how would i put it for the green emerald?

Yep — from your screenshot, the path should be:

{"placeholder":"nbt_data_get_server","values":{"source_type":"entity","entity_selector":"@s","nbt_path":"ForgeCaps."sonicraft:player_variables".green_chaos_emerald_collected","return_type":"value"}}

If you want the image to show only when collected, use it in a requirement like:

  • Is Number
  • compare the placeholder value to 1

If you want, I can also show you the exact requirement setup for the HUD image 🙂

ivory scaffoldBOT
#

✅ | nbt data isnt pulled