Difference between revisions of "Digibuilder"

From Pandorabox
Jump to navigation Jump to search
(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...")
 
m (Added category)
Line 30: Line 30:
 
   -- { pos = { x=1, y=0, z=0 }, success = true, name = "stairs:stair_stone", param2 = 3 }: a stair with info on param2 (rotation)
 
   -- { pos = { x=1, y=0, z=0 }, success = true, name = "stairs:stair_stone", param2 = 3 }: a stair with info on param2 (rotation)
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
[[Category:Digiline]]

Revision as of 20:39, 9 February 2024

Overview

A Digibuilder is a Digiline device used to place nodes around it. It looks like Digibuilder.png.

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)