Cosmic
Cosmic
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
thats your plugin, im assuming. command works fine for me when just /give-ing
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
:squints:
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
No description
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
this works for 1.21.4
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
Here @AYODAISY /give @p blaze_rod[custom_model_data={strings:["zeus"]}] 1
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
no, its moreso the formatting of the model and item's json file
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
refer to formatting changes here
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
the resource pack formatting changed w/custom model data
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
thats why
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
1.21.4
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
ah.
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
what version are you on?
39 replies
AAdmincraft
Created by AYODAISY on 2/20/2025 in #questions
Custom resource pack showing black and purple?
You're Missing the Texture Atlas, I believe
39 replies
AAdmincraft
Created by Eismeister on 2/23/2025 in #questions
Make cookies edible on full hunger?
You can use a datapack for this, just place it in a datapack in the right subfolder, would apply for all newly-crafted cookies. For Existing Cookies you could probably set a check if they have regular cookies to replace them with these, but making a custom villager to do that (by players trading in old ones) is prolly easier
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:wheat"
},
"X": {
"item": "minecraft:cocoa_beans"
}
},
"pattern": [
"#X#"
],
"result": {
"components": {
"minecraft:food": {
"nutrition": 2,
"saturation": 0.2,
"can_always_eat": true
}
},
"count": 8,
"id": "minecraft:cookie"
}
}
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:wheat"
},
"X": {
"item": "minecraft:cocoa_beans"
}
},
"pattern": [
"#X#"
],
"result": {
"components": {
"minecraft:food": {
"nutrition": 2,
"saturation": 0.2,
"can_always_eat": true
}
},
"count": 8,
"id": "minecraft:cookie"
}
}
Command Wise, Here's one you can /give /give @p cookie[food={nutrition:4,saturation:0.2,can_always_eat:true}] 1
6 replies