Digibuilder
Revision as of 20:34, 9 February 2024 by Birdlover32767 (talk | contribs) (Created page with "== Overview == A Digibuilder is a Digiline device used to place nodes around it. It looks like File:Digibuilder.png. == Crafting Recipe == A Digibuilder is made by cr...")
Overview
A Digibuilder is a Digiline device used to place nodes around it. It looks like .
Crafting Recipe
A Digibuilder is made by crafting 8 Luacontrollers in a ring around a Diamond Block.
Digiline Interactions
Getting a node
{
command = "getnode",
pos = { x=1, y=0, z=0 }
}
-- OUTPUTS:
-- { error = true, message = "..." }: error
-- { pos = { x=1, y=0, z=0 }, name = "default:stone" }: a stone block
-- { pos = { x=1, y=0, z=0 }, name = "stairs:stair_stone", param2 = 3 }: a stair with info on param2 (rotation)
Setting a node
{
command = "setnode",
pos = { x=1, y=0, z=0 },
param2 = 3,
name = "stairs:stair_stone"
}
-- OUTPUTS:
-- { error = true, message = "..." }: error
-- { pos = { x=1, y=0, z=0 }, success = true, name = "default:stone" }: a stone block
-- { pos = { x=1, y=0, z=0 }, success = true, name = "stairs:stair_stone", param2 = 3 }: a stair with info on param2 (rotation)