Started by
woodcraft
on
Topic category: Help with Minecraft modding (Java Edition)
Heya!
I was looking at some guides on procedures and found this one: https://mcreator.net/forum/51631/tutorial-1-how-create-working-zombie-b…
He uses a block called "Is provided world remote (client side)" and i was just wondering what and why he uses it...
My guess is that it's checking if it's client side or not but im not sure and if anyone knows and can clear this up for me i would be utterly thankful!
This block will check on which side the procedure takes place.
On the server or client side (without 'not'- client side, with 'not’ - server side)
It is used mainly to restrict the execution of procedures on a particular side. Since the sides are not synchronized.
For example, when using random, if you do not check that the procedure is performed only on the server side, various errors may occur, since there will be different values on the client and server side.
Makes sense thank you!
Check https://mcreator.net/wiki/developing-multiplayer-compatible-mods
hey can one of you help me? where actually is the world remote block i cannot seem to find it anywhere
Same here