Combining Custom Loot Table With Custom NameCustom Name Data Tags with /summonClear item with custom name?Testfor block with custom nameMinecraft loot table - a function with multiple conditions?Minecraft /fill to replace all blocks in an area with chests prefilled with a loot tabledetecting item with custom name and amountMy arrows aren't being executed at by a looping function/command blockloot table data packs 1.13 Please HELPWhere do I place block loot table in 1.14 data pack?How do I add a loot table to an item in a loot table in minecraft?
How do changes to your speed that occur on your own turn affect your available movement?
High income and difficulty during interviews
Why do people say "I am broke" instead of "I am broken"?
In a script how can I signal who's winning the argument?
My current job follows "worst practices". How can I talk about my experience in an interview without giving off red flags?
Found more old paper shares from broken up companies
What kind of world would drive brains to evolve high-throughput sensory?
What exactly makes a General Products hull nearly indestructible?
Monty Hall Problem with a Fallible Monty
Why is DC so, so, so Democratic?
How could an engineer advance human civilization by time traveling to the past?
Company requiring me to let them review research from before I was hired
How can I make sure my players' decisions have consequences?
"It is what it is" in French
Why are angular mometum and angular velocity not necessarily parallel, but linear momentum and linear velocity are always parallel?
Reference request: mod 2 cohomology of periodic KO theory
What is an Eternal Word™?
Considerations when providing money to one child now, and the other later?
How can I tell if there was a power cut when I was out?
Invert Some Switches on a Switchboard
Can GPL and BSD licensed applications be used for government work?
Idioms: Should it be " the internet is a seemingly infinite well of information" or "the internet is a seemingly infinite wealth of information"
Can 々 stand for a duplicated kanji with a different reading?
How can the artificial womb be made affordable for the common people?
Combining Custom Loot Table With Custom Name
Custom Name Data Tags with /summonClear item with custom name?Testfor block with custom nameMinecraft loot table - a function with multiple conditions?Minecraft /fill to replace all blocks in an area with chests prefilled with a loot tabledetecting item with custom name and amountMy arrows aren't being executed at by a looping function/command blockloot table data packs 1.13 Please HELPWhere do I place block loot table in 1.14 data pack?How do I add a loot table to an item in a loot table in minecraft?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Ok, iv created a custom loot table for fishing that adds a fish with a Custom-Model-Data tag. However, for some reason, I can't seem to be able to combine the custom name.
Here is the data of the item I want in the loot table:
/give @p
minecraft:tropical_fishdisplay:Name:""text":"Bluegill","italic":false",CustomModelData:3
1
Here is the current working loot table without the name:
"type": "minecraft:fishing",
"pools": [
"rolls": 1.0,
"entries": [
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:cod"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:salmon"
,
"type": "minecraft:item",
"weight": 3,
"name": "minecraft:pufferfish"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:tropical_fish"
,
"type": "minecraft:item",
"name": "minecraft:tropical_fish",
"weight": 85,
"functions": [
"function": "set_nbt",
"tag": "CustomModelData:3"
]
]
]
It's the last one, the tropical fish. Thanks!
minecraft
add a comment |
Ok, iv created a custom loot table for fishing that adds a fish with a Custom-Model-Data tag. However, for some reason, I can't seem to be able to combine the custom name.
Here is the data of the item I want in the loot table:
/give @p
minecraft:tropical_fishdisplay:Name:""text":"Bluegill","italic":false",CustomModelData:3
1
Here is the current working loot table without the name:
"type": "minecraft:fishing",
"pools": [
"rolls": 1.0,
"entries": [
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:cod"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:salmon"
,
"type": "minecraft:item",
"weight": 3,
"name": "minecraft:pufferfish"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:tropical_fish"
,
"type": "minecraft:item",
"name": "minecraft:tropical_fish",
"weight": 85,
"functions": [
"function": "set_nbt",
"tag": "CustomModelData:3"
]
]
]
It's the last one, the tropical fish. Thanks!
minecraft
add a comment |
Ok, iv created a custom loot table for fishing that adds a fish with a Custom-Model-Data tag. However, for some reason, I can't seem to be able to combine the custom name.
Here is the data of the item I want in the loot table:
/give @p
minecraft:tropical_fishdisplay:Name:""text":"Bluegill","italic":false",CustomModelData:3
1
Here is the current working loot table without the name:
"type": "minecraft:fishing",
"pools": [
"rolls": 1.0,
"entries": [
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:cod"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:salmon"
,
"type": "minecraft:item",
"weight": 3,
"name": "minecraft:pufferfish"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:tropical_fish"
,
"type": "minecraft:item",
"name": "minecraft:tropical_fish",
"weight": 85,
"functions": [
"function": "set_nbt",
"tag": "CustomModelData:3"
]
]
]
It's the last one, the tropical fish. Thanks!
minecraft
Ok, iv created a custom loot table for fishing that adds a fish with a Custom-Model-Data tag. However, for some reason, I can't seem to be able to combine the custom name.
Here is the data of the item I want in the loot table:
/give @p
minecraft:tropical_fishdisplay:Name:""text":"Bluegill","italic":false",CustomModelData:3
1
Here is the current working loot table without the name:
"type": "minecraft:fishing",
"pools": [
"rolls": 1.0,
"entries": [
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:cod"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:salmon"
,
"type": "minecraft:item",
"weight": 3,
"name": "minecraft:pufferfish"
,
"type": "minecraft:item",
"weight": 10,
"name": "minecraft:tropical_fish"
,
"type": "minecraft:item",
"name": "minecraft:tropical_fish",
"weight": 85,
"functions": [
"function": "set_nbt",
"tag": "CustomModelData:3"
]
]
]
It's the last one, the tropical fish. Thanks!
minecraft
minecraft
asked 4 mins ago
SjamSjam
183 bronze badges
183 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f355024%2fcombining-custom-loot-table-with-custom-name%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f355024%2fcombining-custom-loot-table-with-custom-name%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown