Do nodes have uniqie identification numbers?
is there a way to call a node by a unique identifier and get its meta information? given the block exists and i am on the other side of the world if i call a script that has that unigue id i can influence it.
to give an over all example i have a chest say at 0,0,0 and i am standing at my castle in the sky, 1000,1000,1000 and i want to add items to that chest, the code wants to know the position, so i would call something like
???
what i am trying to say is i know that the node is but i dont know its position and the code wants to know the nodes position. the nodes position however is constantly changing so how would i get its position.
to give an over all example i have a chest say at 0,0,0 and i am standing at my castle in the sky, 1000,1000,1000 and i want to add items to that chest, the code wants to know the position, so i would call something like
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
node_id=2342354
pos = get_node_id_pos(node_id)
???
what i am trying to say is i know that the node is but i dont know its position and the code wants to know the nodes position. the nodes position however is constantly changing so how would i get its position.