Digibuilder

Description

Allows the mesecons luacontroller to build things to the world

Settings 🔗

  • digibuilder.max_radius max radius, default: 15 nodes
  • digibuilder.setnode_delay delay between setnode calls in seconds, default: 0.5

Examples 🔗

See: https://github.com/BuckarooBanzay/digibuilder/tree/master/examples

Commands 🔗

Get node 🔗

digiline_send("digibuilder", {
  command = "getnode",
  pos = { x=1, y=0, z=0 }
})

if event.type == "digiline" and event.channel == "digibuilder" then
  -- { error = true, message = "..." }
  -- { pos = { x=1, y=0, z=0 }, name = "default:stone" }
  -- { pos = { x=1, y=0, z=0 }, name = "stairs:stair_stone", param2 = 3 }
end

Set node 🔗

digiline_send("digibuilder", {
  command = "setnode",
  pos = { x=1, y=0, z=0 },
  param2 = 3,
  name = "stairs:stair_stone"
})

if event.type == "digiline" and event.channel == "digibuilder" then
  -- { error = true, message = "..." }
  -- { pos = { x=1, y=0, z=0 }, success = true, name = "default:stone" }
  -- { pos = { x=1, y=0, z=0 }, success = true, name = "stairs:stair_stone", param2 = 3 }
end

Reviews

Review

Do you recommend this mod?

  • No reviews, yet.

Releases

2024-05-22

Download

2024-05-22 02:10 UTC

2024-05-22 🔗

No release notes

2024-05-07

Download

2024-05-07 02:11 UTC

2024-05-07 🔗

No release notes

2024-03-10

Download

2024-03-10 02:11 UTC

2024-03-10 🔗

No release notes

2024-03-09

Download

2024-03-09 02:10 UTC

2024-03-09 🔗

No release notes

2024-02-28

Download

2024-02-28 02:10 UTC

2024-02-28 🔗

No release notes

All releases

Threads

New thread

Thread Last Reply

No threads found

Information

Provides

digibuilder

Dependencies

Required
digilines fakelib
Optional
default farming mesecons_luacontroller mtt pipeworks vizlib

Information

Type
Mod
Technical Name
digibuilder
Languages
English
License
MIT for code,
CC-BY-SA-3.0 for media.
Maintenance State
Unknown
Added
2021-02-18 13:12 UTC
Maintainers
BuckarooBanzai

Used By