Started by
mr_mckool
on
Topic category: Help with MCreator software
I have a item which gives you strength will holding it but I also want it to play a sound every time you put it in you hand but what happens is it starts the sound every tick will holding it
how can I fix this problem
Hi,
Try to set a variable. When your item start the sound, set your variable on "true".
Add this procedure :
If [var] = true
play the sound
when the sound stop, set the variable on "false"
Hope this will help you.