Time |
Nick |
Message |
00:17 |
|
NakedFury joined #minetest-mods |
09:24 |
|
ecube joined #minetest-mods |
10:42 |
|
PilzAdam joined #minetest-mods |
12:25 |
|
rubenwardy joined #minetest-mods |
13:06 |
|
NakedFury joined #minetest-mods |
13:50 |
|
stefferoo joined #minetest-mods |
13:50 |
stefferoo |
hi |
13:50 |
stefferoo |
my daughter started to play minetest at school and i wanted to creat a server that can be public so all my daughters friends can go on |
14:41 |
|
rubenwardy joined #minetest-mods |
17:53 |
|
rubenwardy_ joined #minetest-mods |
18:12 |
|
NakedFury joined #minetest-mods |
18:26 |
|
NakedFury left #minetest-mods |
22:22 |
|
ExcaliburZero joined #minetest-mods |
22:24 |
ExcaliburZero |
I am currently working on a mod that has a node, which when placed, clears many blocks below it and replaces them with a ladder. I have gotten most of it done, but I cannot get the ladders, that it creates, to face a set direction. How can that be done? |
22:42 |
PilzAdam |
with param2 |
22:43 |
PilzAdam |
just do something like: minetest.env:set_node(pos, {name="default:ladder", param2=1}) |
22:43 |
PilzAdam |
you need to find the correct param2, though |
22:43 |
ExcaliburZero |
Ok, I'll try that. |