Started by
nvallorplays
on
Topic category: Help with Minecraft modding (Bedrock Edition)
I am making an addon for my friend and made items that I use to test the item but don't it to appear in creative inventory in case he uses it with creative and I need the item so i can experiment with new ways to make it better and to check with each new update that it'll still work and am too lazy to make a completely new addon. please help.
I want it to be like barrier or structure block where you can only get it with /give.
Edited by nvallorplays on Sat, 09/03/2022 - 22:01
Hello,
On editor code on block, you add "category": "myCategory" and "minecraft:creative_category": {
"category": "items"
},
exemple :
{ "format_version": "1.17.3", "minecraft:block": { "description": { "identifier": "myMod:MyBlock", "is_experimental": false, "register_to_creative_menu ": true, "category": "MyCategory" }, "components": { "minecraft:creative_category": { "category": "items" }, "minecraft:block_light_emission": 0, "minecraft:destroy_time": 1, "minecraft:explosion_resistance": 10, "minecraft:friction": 0.6, "minecraft:flammable": { "flame_odds": 0, "burn_odds": 0 } } } }