How would you make custom noteblock sounds?

Started by OWOowOooadeofo… on

Topic category: Help with Minecraft modding (Java Edition)

Active 1 year ago
Joined Mar 2019
Points:
819

User statistics:

  • Modifications: 5
  • Forum topics: 18
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 41
How would you make custom noteblock sounds?

I would really like to know how i would make a note block copy. what would procedures look like for my custom block?

On block right clicked and…
Sun, 03/10/2019 - 11:49

On block right clicked and play sound procedure block. For more sounds, wait for 1.8.3 for block specific variables.

Active 1 year ago
Joined Mar 2019
Points:
819

User statistics:

  • Modifications: 5
  • Forum topics: 18
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 41
So now that Mcreator 1.8.3…
Thu, 03/21/2019 - 22:50

So now that Mcreator 1.8.3 is out, how would i do it?

You can use the block…
Fri, 03/22/2019 - 09:58

You can use the block variable to specify different notes, and on right click increment the variable value. Based on the value you then play the sound.

Active 1 year ago
Joined Mar 2019
Points:
819

User statistics:

  • Modifications: 5
  • Forum topics: 18
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 41
And how would you increment…
Sun, 03/24/2019 - 23:23

And how would you increment it? Like can you tell if its been right clicked a certian number of times?

Active 1 year ago
Joined Mar 2019
Points:
819

User statistics:

  • Modifications: 5
  • Forum topics: 18
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 41
its not working, i have no…
Thu, 07/18/2019 - 01:12

its not working, i have no idea why

what are my errors?!

Local variables are reset on…
Thu, 07/18/2019 - 06:45

Local variables are reset on each execution (local per execution). You need to store note block note pitch in NBT block tags.

Active 1 year ago
Joined Mar 2019
Points:
819

User statistics:

  • Modifications: 5
  • Forum topics: 18
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 41
and how would i do that? and…
Thu, 07/18/2019 - 17:00

and how would i do that? and sorry i don't know how to do practically anything

You have set and get number…
Thu, 07/18/2019 - 18:00

You have set and get number tag procedure blocks which basically work the same way as local variables, just replace current blocks with these.

Active 1 year ago
Joined Mar 2019
Points:
819

User statistics:

  • Modifications: 5
  • Forum topics: 18
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 41
ok i did that, but for some…
Fri, 07/19/2019 - 05:00

ok i did that, but for some reason it only playes 3 notes, low middle and high, and i dont know if its an mcreator error or an error on my behalf, but does the pitch use decimal places instead of numbers 1-24? it seems to only play the 3 f# in the range, whats the problem?