Climbable trees should exist

Post Reply
User avatar
Otter
Member
Posts: 152
Joined: Fri May 12, 2017 21:17
GitHub: InfiniteOtter
In-game: Otter

Climbable trees should exist

by Otter » Post

I can walk on the tops of trees, but I cannot climb them. I am a sad and weird monkey indeed. :(
A mod that allowed leaves to act like ladders would be kind of cool. Thorny trees could be excluded.

User avatar
MineYoshi
Member
Posts: 5373
Joined: Wed Jul 08, 2015 13:20
Contact:

Re: Climbable trees should exist

by MineYoshi » Post

Maybe adding vines to the trees, and make them climbable would be easier to do.
Image
I'm just saying, anyways it's needed some way to climb trees as you've said.
Have a nice day! :D

User avatar
Otter
Member
Posts: 152
Joined: Fri May 12, 2017 21:17
GitHub: InfiniteOtter
In-game: Otter

Re: Climbable trees should exist

by Otter » Post

Vines are cool, especially if you want to get into a tree. I kind of like the feel of the limbs being out of reach normally. If leaves are like ladders only much harder to see through, you have to work to get into the tree. If you can reach the leaves, then having them act like a ladder would allow you to easily move through the tree. The hard part is getting into the tree. It would also mean that you could easily move to a void and fall out of the tree if you are not careful. :)

This may take a bit of experimentation. Thinking about climbing, it is quite hard to get a hand over the highest leaf even if you are a light agile expert climber. So making leaves like ladders that you cannot get over the top of, would make it even better.
In Minetest I can climb the two meters above a ladder and stand on the top of the ladder. I think having a strong limb (2 leaves over each other) should be what it takes for leaves to support you and you should not be able to climb above them. This would reduce the number of users that will decide to use leaves as ladders the way that some folk make water tube elevators.

User avatar
kaadmy
Member
Posts: 706
Joined: Thu Aug 27, 2015 23:07
GitHub: kaadmy
IRC: KaadmY
In-game: KaadmY kaadmy NeD

Re: Climbable trees should exist

by kaadmy » Post

Trees and underwater are two areas that Minetest doesn't utilize well.
Never paint white stripes on roads near Zebra crossings.

Pixture

User avatar
ExeterDad
Member
Posts: 1717
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad
Location: New Hampshire U.S.A

Re: Climbable trees should exist

by ExeterDad » Post

Tree climbing is interesting. Too bad ladder climbing code can't be used in default tree nodes. Except after it has been dug.

User avatar
kaadmy
Member
Posts: 706
Joined: Thu Aug 27, 2015 23:07
GitHub: kaadmy
IRC: KaadmY
In-game: KaadmY kaadmy NeD

Re: Climbable trees should exist

by kaadmy » Post

Why would it have to be a hand-placed node to use as a ladder?
Also ladders assume the player is intersecting into part of the full node size, so making a tree trunk climbable don't change anything.
Never paint white stripes on roads near Zebra crossings.

Pixture

User avatar
Otter
Member
Posts: 152
Joined: Fri May 12, 2017 21:17
GitHub: InfiniteOtter
In-game: Otter

I'm still clueless at modding

by Otter » Post

I go to, game\minetest_game\default\nodes.lua and examine ladders,
____________________________________________
minetest.register_node("default:ladder_wood", {
description = "Wooden Ladder",
drawtype = "signlike",
tiles = {"default_ladder_wood.png"},
inventory_image = "default_ladder_wood.png",
wield_image = "default_ladder_wood.png",
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = true,
walkable = false,
climbable = true,
is_ground_content = false,
selection_box = {
type = "wallmounted",
--wall_top = = <default>
--wall_bottom = = <default>
--wall_side = = <default>
},
groups = {choppy = 2, oddly_breakable_by_hand = 3, flammable = 2},
legacy_wallmounted = true,
sounds = default.node_sound_wood_defaults(),
})
_____________________________
So I figure, I just add climbable=true to default:leaves, no luck. I figure I need to make leaves where I can pass through them to get inside them to climb them. I have thrashed around and not figured out how to do it. :(
I am not sure what adding walkable = false, does. I added that to and I can still walk on the leaves an I can't pass through them.

As a correction, I just figured out that I had a mod that was changing leaves and messing up the base mod.
By changing leaves in game\minetest_game\default\nodes.lua
and adding the lines,"

-- make trees climbable
walkable = false,
climbable = true,
-- end make trees climbable change
"
just before the line that says,
"is_ground_content = false,"

you will be able to climb trees. First you have to get up in the tree though.
Last edited by Otter on Tue May 30, 2017 03:24, edited 1 time in total.

User avatar
Otter
Member
Posts: 152
Joined: Fri May 12, 2017 21:17
GitHub: InfiniteOtter
In-game: Otter

Re: Climbable trees should exist

by Otter » Post

This modification makes you a total monkey boy. You can sail through leaves. Pretty fun, but then you hit a void and fall out of the tree. Safe enough in apple trees, doing it in a jungle might be bad.
This makes running through the woods a lot more fun. If this was linked to a skill or a potion it would be a pretty cool effect. As it is, it is a little bit too wonderful and easy to climb. If it kept you from getting above the tree and dropped you if the layer wasn't thick enough it might be better. It is kind of limited as you can't really see where you are going.

User avatar
Otter
Member
Posts: 152
Joined: Fri May 12, 2017 21:17
GitHub: InfiniteOtter
In-game: Otter

Re: Climbable trees exist now!

by Otter » Post

I put the mod here:
viewtopic.php?f=9&t=17754

User avatar
paramat
Developer
Posts: 3700
Joined: Sun Oct 28, 2012 00:05
GitHub: paramat
IRC: paramat
Location: UK

Re: Climbable trees should exist

by paramat » Post

Jungletrees already have vines in the texture, you can make the trunks climbable by using a mod to surround the trunks with 'airlike' nodes that are 'climbable', as in my 'watershed' mod:

Code: Select all

minetest.register_node("watershed:vine", {
	description = "Jungletree vine",
	drawtype = "airlike",
	paramtype = "light",
	walkable = false,
	climbable = true,
	pointable = false,
	diggable = false,
	buildable_to = true,
	is_ground_content = false,
	groups = {not_in_creative_inventory = 1},
})

User avatar
Otter
Member
Posts: 152
Joined: Fri May 12, 2017 21:17
GitHub: InfiniteOtter
In-game: Otter

Re: Climbable trees should exist

by Otter » Post

paramat wrote:Jungletrees already have vines in the texture, you can make the trunks climbable by using a mod to surround the trunks with 'airlike' nodes that are 'climbable', as in my 'watershed' mod:

Code: Select all

minetest.register_node("watershed:vine", {
	description = "Jungletree vine",
	drawtype = "airlike",
	paramtype = "light",
	walkable = false,
	climbable = true,
	pointable = false,
	diggable = false,
	buildable_to = true,
	is_ground_content = false,
	groups = {not_in_creative_inventory = 1},
})
I like it. If a block that mostly resembles stone or dirt was made with a mark to show a hand hold, and the block made the air in a cube around it climbable, then rock climbing is a thing. :)

User avatar
maikerumine
Member
Posts: 1420
Joined: Mon Aug 04, 2014 14:27
GitHub: maikerumine
In-game: maikerumine

Re: Climbable trees should exist

by maikerumine » Post

ExeterDad wrote:Tree climbing is interesting. Too bad ladder climbing code can't be used in default tree nodes. Except after it has been dug.
That is interesting. I figured just add climbable = true to default:tree etc and it would work, right?
Talamh Survival Minetest-->viewtopic.php?f=10&t=12959

BBmine
Member
Posts: 3476
Joined: Sun Jul 12, 2015 22:51
GitHub: BBmine
IRC: BBmine
In-game: Baggins
Location: USA

Re: Climbable trees should exist

by BBmine » Post

maikerumine wrote:
ExeterDad wrote:Tree climbing is interesting. Too bad ladder climbing code can't be used in default tree nodes. Except after it has been dug.
That is interesting. I figured just add climbable = true to default:tree etc and it would work, right?
No, you'd have to be inside the trunk to climb it. Ladders aren't full node size.

zing269
Member
Posts: 109
Joined: Sat Apr 30, 2016 19:10

Re: Climbable trees should exist

by zing269 » Post

Otter wrote:[I like it. If a block that mostly resembles stone or dirt was made with a mark to show a hand hold, and the block made the air in a cube around it climbable, then rock climbing is a thing. :)
You might be interested in this: viewtopic.php?f=11&t=17069

User avatar
XtremeHacker
Member
Posts: 174
Joined: Mon Aug 01, 2016 04:15
GitHub: MisterXtreme
IRC: MrXtreme
In-game: MrXtreme
Location: X -0, Y -0, Z -0
Contact:

Re: Climbable trees should exist

by XtremeHacker » Post

What if we made a vine node, like the ladder, had had them covor say the jungle trees, and remove the vines from the jungle log texture @Paramat?
If you say that

Code: Select all

function.name_of_thing_to_do
is impossible, then you didn't try hard enough. :P

Mods I work on: MicroExpansion

User avatar
kaadmy
Member
Posts: 706
Joined: Thu Aug 27, 2015 23:07
GitHub: kaadmy
IRC: KaadmY
In-game: KaadmY kaadmy NeD

Re: Climbable trees should exist

by kaadmy » Post

Isn't that exactly what Minecraft does? ;)
Never paint white stripes on roads near Zebra crossings.

Pixture

User avatar
XtremeHacker
Member
Posts: 174
Joined: Mon Aug 01, 2016 04:15
GitHub: MisterXtreme
IRC: MrXtreme
In-game: MrXtreme
Location: X -0, Y -0, Z -0
Contact:

Re: Climbable trees should exist

by XtremeHacker » Post

Is there anything wrong with that?
I personally like the idea of climbable vines, and it would be nice to not have the vines "buil in" to the jungle tree texture, as it makes the log not so desired for building, and just would be more interesting IMHO.
If you say that

Code: Select all

function.name_of_thing_to_do
is impossible, then you didn't try hard enough. :P

Mods I work on: MicroExpansion

User avatar
TumeniNodes
Member
Posts: 2943
Joined: Fri Feb 26, 2016 19:49
GitHub: TumeniNodes
IRC: tumeninodes
In-game: TumeniNodes
Location: in the dark recesses of the mind
Contact:

Re: Climbable trees should exist

by TumeniNodes » Post

Otter wrote:I can walk on the tops of trees, but I cannot climb them. I am a sad and weird monkey indeed. :(
A mod that allowed leaves to act like ladders would be kind of cool. Thorny trees could be excluded.
just want to aim your direction at this ---> https://github.com/pithydon/climbing_leaves

have not checked it out myself but, maybe what you are looking for, or something you could adjust to your needs
A Wonderful World

User avatar
TumeniNodes
Member
Posts: 2943
Joined: Fri Feb 26, 2016 19:49
GitHub: TumeniNodes
IRC: tumeninodes
In-game: TumeniNodes
Location: in the dark recesses of the mind
Contact:

Re: Climbable trees should exist

by TumeniNodes » Post

XtremeHacker wrote:What if we made a vine node, like the ladder, had had them covor say the jungle trees, and remove the vines from the jungle log texture @Paramat?
just create a mod for it.

you can have vines on jungle trees as well as hanging from leaves, randomly

a really cool feature, would be vines you can actually swing from! (swing from tree to tree)

yes, I am still anxious to create a minetest version of the old Atari game Pitfall :P
A Wonderful World

Post Reply

Who is online

Users browsing this forum: No registered users and 10 guests