#Alter create blaze burner recipe

45 messages · Page 1 of 1 (latest)

meager dome
#

As far as I know, I cannot find where the create mod specifies right-clicking on a blaze to turn the empty blaze burner into actual blaze burner.

I am trying to remove it so I can have a different recipe for the actual blaze burner

mystic orchidBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

dapper briar
#

probably going to have to listen for a entity interaction with the empty burner and cancel it

meager dome
#

que cringe

#

gimme a minute ill let you know

dapper briar
#

shouldn't be too bad

meager dome
#

Im still getting used to kubeJS is the thing so i gotta look up constantly

#

How would I get the entity from event parameter?

#

??

dapper briar
#

totally writing this off the cuff with no testing, but something like

ItemEvents.entityInteracted('create:empty_blaze_burner', event => {
  if (event.target.type == 'minecraft:blaze') {
    event.cancel()
  }
})
meager dome
#

how do I know what event attributes I look for? where is the doc for that

dapper briar
#

I call my documentation.... 'the code' lol

#

just been around it enough to know where to look for what I want

#

probejs is also insanely helpful

fiery owlBOT
#

ProbeJS is an addon mod for KubeJS that generates typings files for VSCode, allowing VSCode to offer autocompletions for a ton of things!

Mod by @molten summit

meager dome
#

Thats what i've been looking for all my life

#

🤩

#

crying joy rn

#

thanks for the pointers dude

meager dome
dapper briar
#

Did you do /probejs dump inside mc?

meager dome
#

yup

#

[side question, how would I add color to this: e.player.tell('To Create a blaze burner, You must kill a greater blaze and infuse its power within')]

EDIT: I DID IT (the text thing)

#

look, i type stone and I don't get suggest minecraft:stone or anything else

#

and i launched my instance folder, should i open workspace from the .vscode instead?

#

like my workspace is the 'New Custom' Folder

dapper briar
#

that's where you should open it from

meager dome
#

aight

#

so im good

dapper briar
#

it's probably just way down the list of suggestions. what if you start with minecraft:s

meager dome
#

should I try dumping again or something?

meager dome
#

I've tried with other items too and 😦

#

Do I have all the probe files?

#

in item attributes I see items

#

but it's like the full json schem

dapper briar
#

no clue, truthfully I rarely use the item part, mostly just for mc/kjs methods

meager dome
#

alr

#

like here:

Isee items but they are not suggested

#

I figured it out

#

you gotta do @item then tab and then you can type your item

#

anyways thanks for your help! Really Really appreciate it!