event.create('molten_tsalachtite')
.displayName('Molten Tsalachtite')
.stillTexture('genesis:block/molten_tsalachtite_still') // Added missing dot before stillTexture
.flowingTexture('genesis:block/molten_tsalachtite_flow') // Added missing opening quote before genesis
.bucketItem.texture('genesis:item/molten_tsalachtite_bucket').displayName('Molten Tsalachtite Bucket').unstackable() // Moved the unstackable()
});````
can anybody help wit this?
#KubeJS Bucket texture doesnt show up
13 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
You can write your code in a codeblock by typing it between the codeblock delimiters:
```js :arrow_left:
onEvent('recipes', e => {
e.smelting('minecraft:glass', '#forge:sand').xp(.1)
})
``` :arrow_left:
As an example, :arrow_up: will look like this:
onEvent('recipes', e => {
e.smelting('minecraft:glass', '#forge:sand').xp(.1)
})
ah I forgot how to do the formatting, thanks
really hard to read without it :P
[Quote ➤](#1028053509792333926 message) so you can do stuff like ```js
.bucketItem(item => {
item.glow(true).rarity('rare')
})
it should look like ⬆️
like this?
onEvent('fluid.registry', event => {
event.create('molten_tsalachtite')
.displayName('Molten Tsalachtite')
.stillTexture('genesis:block/molten_tsalachtite_still')
.flowingTexture('genesis:block/molten_tsalachtite_flow')
.bucketItem(item => {
item.glow(true).rarity('rare')
})
or like this?
onEvent('fluid.registry', event => {
event.create('molten_tsalachtite')
.displayName('Molten Tsalachtite')
.stillTexture('genesis:block/molten_tsalachtite_still')
.flowingTexture('genesis:block/molten_tsalachtite_flow')
})
.bucketItem(item => {
item.glow(true).rarity('rare')
})
the first
doesnt work
[14:17:45] [INFO ] Hello, World! (You will only see this line once in console, during startup)```
onEvent('fluid.registry', event => {
event.create('molten_tsalachtite')
.displayName('Molten Tsalachtite')
.stillTexture('genesis:block/molten_tsalachtite_still')
.flowingTexture('genesis:block/molten_tsalachtite_flow')
.bucketItem(item => {
item.glow(true).rarity('rare')
})
})
thanks!