VanessaE wrote:Neither of those options is useful these days. What are you trying to accomplish?
Putting the "carts" mod tracks vertical for elevators. I thought it would be as simple as changing/adding those. I guess not. Lol.
Also, I know that you know code, do you know why I would get this
23:15:19: ERROR[main]: ========== ERROR FROM LUA ===========
23:15:19: ERROR[main]: Failed to load and run script from
23:15:19: ERROR[main]: C:\Users\Matt and Betty\Downloads\minetest-0.4.5\minetest-0.4.5\bin\..\mods\minetest\rope_fence\init.lua:
23:15:19: ERROR[main]: ...etest-0.4.5\bin\..\mods\minetest\rope_fence\init.lua:4: attempt to call global 'discription' (a nil value)
23:15:19: ERROR[main]: stack traceback:
23:15:19: ERROR[main]: ...etest-0.4.5\bin\..\mods\minetest\rope_fence\init.lua:4: in main chunk
23:15:19: ERROR[main]: =======END OF ERROR FROM LUA ========
23:15:19: ERROR[main]: Server: Failed to load and run C:\Users\Matt and Betty\Downloads\minetest-0.4.5\minetest-0.4.5\bin\..\mods\minetest\rope_fence\init.lua
23:15:19: ERROR[main]: ModError: Failed to load and run C:\Users\Matt and Betty\Downloads\minetest-0.4.5\minetest-0.4.5\bin\..\mods\minetest\rope_fence\init.lua
From this.
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
--Rope Fence Mod by Tedypig, Licence WTFPL (Textures+Code), Edit how you want.
minetest.register_node ('rope_fence:rope_fence', {
discription "Adds a rope fence to your game.",
drawtype= 'fencelike',
tile_images {rope_fence.png, rope_fence_top.png, rope_fence_side.png},
inventory_image {rope_fence.png},
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
material = minetest.digprop_constanttime(1.0),
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,},
})
minetest.register_craft ({
output='rope_fence:rope_fence',
recipe= {
{'default:stick','','default:stick'},
{'default_stick','','default:stick'},
{'default:stick','','default:stick'},
}
})
EDIT: Or anyone for that matter? My girlfriend wants effing beach like rope fences, so I'm trying.