Just moves the one node at -726,9,77 for now and you can't ride it yet, but it does properly move and communicate with the controller.
15 lines
259 B
Lua
15 lines
259 B
Lua
local components = {
|
|
"framework",
|
|
"car",
|
|
"drive_null",
|
|
"drive_entity",
|
|
"controller",
|
|
"callbuttons",
|
|
"pairingtool",
|
|
"pilantern",
|
|
}
|
|
|
|
for _,v in ipairs(components) do
|
|
dofile(string.format("%s%s%s.lua",minetest.get_modpath("celevator"),DIR_DELIM,v))
|
|
end
|