[Game] MineClone2 [0.84.0]
Re: Mobs + water == annoying
This version is more aesthetically pleasing and they seem to try to get out the water more.
+
Spoiler
Re: Mobs + water == annoying
Well this started out as me doing a hack for an issue that was triggering me, but this version actually looks more generally useful.
The mobs float in the top water node, instead of on top of it, so it looks better IMO; this seems to trigger the get out of the water behavior better. This version stops them drowning when their head is out of the water.
They don't all get out of the water but a lot more of them seem to.
Probably good enough to be a useful pointer to an acceptable solution if nothing else.
This version is also on the master branch, duh.
The mobs float in the top water node, instead of on top of it, so it looks better IMO; this seems to trigger the get out of the water behavior better. This version stops them drowning when their head is out of the water.
They don't all get out of the water but a lot more of them seem to.
Probably good enough to be a useful pointer to an acceptable solution if nothing else.
This version is also on the master branch, duh.
+
Spoiler
Re: [Game] MineClone2 [0.84.0]
This is what it looks like. The chickens move slightly up and down in one node deep water, so the bob up and down and look pleasing to my eye ... YMMV :)
Re: [Game] MineClone2 [0.84.0]
Oops, I had to tweak it to get the chickens to work like that.
Maybe I'll do a PR.
+
Spoiler
Re: Mobs + water == annoying
After some more testing it appears they don't get out of the water any better :( But they look better and the die sooner in deep water so I made a PR.
https://git.minetest.land/MineClone2/Mi ... pulls/3883
https://git.minetest.land/MineClone2/Mi ... pulls/3883
too gosh darn easy
greetings all, please excuse me if this is the wrong place but i have to vent here about Mineclone 2. it's really quite an amazing game, BUT, it is now soooo f*cking easy! when i first played years ago, i never found any portals or villages or not much of anything, besides mines and spawn cubes. but now, and i have tried this on many many different seeds, u spawn, walk a few meters, and there's a portal with a chest or 2 full of goodies, gold horse armor, gold weapons and nuggets, saddle(s), etc. walk a few more meters, more portals, and how many times do i see one or 2 other portals from one i'm standing at?
i recently watched a youtube vid critical of minecraft has gotten too easy, and that the sheer number of places u can find starts to get boring fast because they are so abundant. i was thinking, gosh, he should see how MCl2 is, stuff everywhere. just now i had to stop playing to come here and vent. i created a new world, v7 mapgen, seed i called lyn, if u wanna try for urself. within a few meters u will find so many portals it's just ridiculous. and this is not something rare on this seed.
as the youtuber said, i just checked the name of the video, and it's 'why minecraft isn't fun anymore', when it's too easy to just walk around and find stuff and freebies all around you you lose the sense of excitement and discovery, or the work of earning your tools and weapons and enchanting when everything is just so easily given to you.
in the screenshots i've included here, i used fly priv to go up a few meters to show just how many portals with free gold and all sorts of goodies u can see just within a single loaded chunk, if u have a 360 degree view u can count at least 7 portals! come on, that is just ridiculous! (unable to attach screenshots :-( )
devs, will you please tone it down and make discovering these things more rare?
i recently watched a youtube vid critical of minecraft has gotten too easy, and that the sheer number of places u can find starts to get boring fast because they are so abundant. i was thinking, gosh, he should see how MCl2 is, stuff everywhere. just now i had to stop playing to come here and vent. i created a new world, v7 mapgen, seed i called lyn, if u wanna try for urself. within a few meters u will find so many portals it's just ridiculous. and this is not something rare on this seed.
as the youtuber said, i just checked the name of the video, and it's 'why minecraft isn't fun anymore', when it's too easy to just walk around and find stuff and freebies all around you you lose the sense of excitement and discovery, or the work of earning your tools and weapons and enchanting when everything is just so easily given to you.
in the screenshots i've included here, i used fly priv to go up a few meters to show just how many portals with free gold and all sorts of goodies u can see just within a single loaded chunk, if u have a 360 degree view u can count at least 7 portals! come on, that is just ridiculous! (unable to attach screenshots :-( )
devs, will you please tone it down and make discovering these things more rare?
Wanting to be someone else is a waste of who you are. – Kurt Cobain
Re: too gosh darn easy
FYI there is an issue open for this https://git.minetest.land/MineClone2/Mi ... ssues/3004
change to, say, and try a few maps. Tweak from there.
1300 looked OK on the single map I tested it on :P
FYI you can change this yourself and maybe suggest a specific value that seems balanced.
Code: Select all
mods\MAPGEN\mcl_structures\ruined_portal.lua
Code: Select all
chunk_probability = 800,
Code: Select all
chunk_probability = 1300,
1300 looked OK on the single map I tested it on :P
Village building foundations
Hi, I have been messing around with villages and have been trying to make a nice way of structuring the foundations. I've come up with a kind of top structure.
The ground in these images is generated, it's not part of the building schematic. The top two layers are the biome's top node and the nodes below the are the filler. For sandy nodes the top is changed slightly so that the sand doesn't collapse.
I went with circles because I found rectangles to be too regular.
The radius of the top layer is the max of x and z with a small padding, the second layer is 2 wider, and the layers below that of 1 less until a minimum of 3. So a big building would be a lot more layers than a small building.
I was wondering what other people think of this approach?
The ground in these images is generated, it's not part of the building schematic. The top two layers are the biome's top node and the nodes below the are the filler. For sandy nodes the top is changed slightly so that the sand doesn't collapse.
I went with circles because I found rectangles to be too regular.
The radius of the top layer is the max of x and z with a small padding, the second layer is 2 wider, and the layers below that of 1 less until a minimum of 3. So a big building would be a lot more layers than a small building.
I was wondering what other people think of this approach?
-
- Member
- Posts: 38
- Joined: Tue Dec 13, 2022 22:31
- In-game: ancientmariner
Re: Village building foundations
I have no idea what the right approach is, but that is a massive improvement. I like it :).Codiac wrote: ↑Sun Aug 20, 2023 05:34Hi, I have been messing around with villages and have been trying to make a nice way of structuring the foundations. I've come up with a kind of top structure.
The ground in these images is generated, it's not part of the building schematic. The top two layers are the biome's top node and the nodes below the are the filler. For sandy nodes the top is changed slightly so that the sand doesn't collapse.
I went with circles because I found rectangles to be too regular.
The radius of the top layer is the max of x and z with a small padding, the second layer is 2 wider, and the layers below that of 1 less until a minimum of 3. So a big building would be a lot more layers than a small building.
I was wondering what other people think of this approach?
screenshot_20230820_145622.pngscreenshot_20230820_145713.pngscreenshot_20230820_151122.png
Re: Village building foundations
I shall name it mcl_util.create_ground_turnip!ancientmariner wrote: ↑Wed Aug 23, 2023 01:00I have no idea what the right approach is, but that is a massive improvement. I like it :).
-
- Member
- Posts: 4247
- Joined: Sun Sep 09, 2012 17:31
- GitHub: Sokomine
- IRC: Sokomine
- In-game: Sokomine
Re: [Game] MineClone2 [0.84.0]
Doesn't really have much to do with MineClone2. It's a problem all village mods (or structure spawning mods) have to a degree.Codiac wrote: Hi, I have been messing around with villages and have been trying to make a nice way of structuring the foundations. I've come up with a kind of top structure.
Bigger buildings are often far more problematic to integrate, yes. I'm fighting with similar problems while trying to get a mixture of mg_villages and the settlements mod. Still not satisified with the results. Especially since villages need paths as well.Codiac wrote: The radius of the top layer is the max of x and z with a small padding, the second layer is 2 wider, and the layers below that of 1 less until a minimum of 3. So a big building would be a lot more layers than a small building.
A list of my mods can be found here.
Re: [Game] MineClone2 [0.84.0]
Why don't studs have chests?
-
- Member
- Posts: 38
- Joined: Tue Dec 13, 2022 22:31
- In-game: ancientmariner
Re: [Game] MineClone2 [0.84.0]
MineClone2 have started the process of a rename/rebrand. We've had name suggestions open for a few weeks, and very shortly we'll be moving to a vote. See here for more info:
https://git.minetest.land/MineClone2/Mi ... ssues/3897
If you have any name suggestions, feel free to get them in shortly before we move on to the next phase.
https://git.minetest.land/MineClone2/Mi ... ssues/3897
If you have any name suggestions, feel free to get them in shortly before we move on to the next phase.
-
- Member
- Posts: 38
- Joined: Tue Dec 13, 2022 22:31
- In-game: ancientmariner
Re: too gosh darn easy
One of our contributors have decreased the amount by 40%, and it has been merged so will be in the next release 0.85.chef trip wrote: ↑Thu Aug 17, 2023 08:05greetings all, please excuse me if this is the wrong place but i have to vent here about Mineclone 2. it's really quite an amazing game, BUT, it is now soooo f*cking easy! when i first played years ago, i never found any portals or villages or not much of anything, besides mines and spawn cubes. but now, and i have tried this on many many different seeds, u spawn, walk a few meters, and there's a portal with a chest or 2 full of goodies, gold horse armor, gold weapons and nuggets, saddle(s), etc. walk a few more meters, more portals, and how many times do i see one or 2 other portals from one i'm standing at?
i recently watched a youtube vid critical of minecraft has gotten too easy, and that the sheer number of places u can find starts to get boring fast because they are so abundant. i was thinking, gosh, he should see how MCl2 is, stuff everywhere. just now i had to stop playing to come here and vent. i created a new world, v7 mapgen, seed i called lyn, if u wanna try for urself. within a few meters u will find so many portals it's just ridiculous. and this is not something rare on this seed.
as the youtuber said, i just checked the name of the video, and it's 'why minecraft isn't fun anymore', when it's too easy to just walk around and find stuff and freebies all around you you lose the sense of excitement and discovery, or the work of earning your tools and weapons and enchanting when everything is just so easily given to you.
in the screenshots i've included here, i used fly priv to go up a few meters to show just how many portals with free gold and all sorts of goodies u can see just within a single loaded chunk, if u have a 360 degree view u can count at least 7 portals! come on, that is just ridiculous! (unable to attach screenshots :-( )
devs, will you please tone it down and make discovering these things more rare?
We knew it was too much, but didn't quite know what the right amount is and it takes lots of testing and tweaking to get it right. This game is made by volunteers in their spare time, so we are often waiting for people to contribute. We have over 800 issues/bugs open atm.
Re: [Game] MineClone2 [0.84.0]
Hello.
I want to test MineTest and what the best Minecraft clone it allows to make (this one probably?).
But singleplayer is too boring for me.
Do this game have at least one maintained multiplayer server to actually test its features?
If yes, please give its address.
Also I'm not sure if my old PC is capable of running it.
Do anyone know if Windows 7 with 10 year old CPU and internal video is enough for Minetest?
Minecraft works fine with it.
I want to test MineTest and what the best Minecraft clone it allows to make (this one probably?).
But singleplayer is too boring for me.
Do this game have at least one maintained multiplayer server to actually test its features?
If yes, please give its address.
Also I'm not sure if my old PC is capable of running it.
Do anyone know if Windows 7 with 10 year old CPU and internal video is enough for Minetest?
Minecraft works fine with it.
- Midnight
- Member
- Posts: 107
- Joined: Sun Dec 19, 2021 13:56
- GitHub: MidnightPhantom
- IRC: Dragon
- In-game: Dragon_Abysss
- Location: Dehradun, India
Re: [Game] MineClone2 [0.84.0]
If you want to play multiplayer try playing on a mineclonia server, it is much suited for multiplayerVort wrote: ↑Mon Sep 18, 2023 06:03Hello.
I want to test MineTest and what the best Minecraft clone it allows to make (this one probably?).
But singleplayer is too boring for me.
Do this game have at least one maintained multiplayer server to actually test its features?
If yes, please give its address.
Also I'm not sure if my old PC is capable of running it.
Do anyone know if Windows 7 with 10 year old CPU and internal video is enough for Minetest?
Minecraft works fine with it.
- Midnight
- Member
- Posts: 107
- Joined: Sun Dec 19, 2021 13:56
- GitHub: MidnightPhantom
- IRC: Dragon
- In-game: Dragon_Abysss
- Location: Dehradun, India
Re: [Game] MineClone2 [0.84.0]
Hey the maker of this fantastic game could you add biome based villages like there are in Minecraft, cuz I miss it a lot
- Midnight
- Member
- Posts: 107
- Joined: Sun Dec 19, 2021 13:56
- GitHub: MidnightPhantom
- IRC: Dragon
- In-game: Dragon_Abysss
- Location: Dehradun, India
Re: [Game] MineClone2 [0.84.0]
Ya potato pc's work fine with mtg after all its lightweight
Re: [Game] MineClone2 [0.84.0]
So, coming back to this again to see how it plays vs. Minecraft using seed 0 as a test world, here's my basic observations from just an hour or so:
- Movement is still overly "floaty", with it possible to pogo up mountainsides...and there's no way to sprint?
- There's still multiple missing shift click niceties with inventory, such as the ability to craft as much as possible from a crafting input in one click, or to move something to the hotbar.
- There's too many structures (I see the post above saying this'll be addressed, note, though I'd argue a 25% reduction in density would be fine), and Ruined Portals especially are a bit too good (there are two right near each other not far from spawn, one is missing a block, the other isn't missing any and has gold blocks!)
- There seems to be too many large ravines.
- Mobs make a weird poof sound when their corpse vanishes, which is confusing and puts I feel a bit too much fanfare on their deaths.
- Animals still don't seem keen on getting out of the ocean.
- There are unusual little islands with only a single layer of stone/sandstone under them, seeming like a worldgen mistake.
- Shipwreck loot seems like it has too much iron and too little gold.
- The light fades too sharply in the water. A shipwreck that nearly pokes out to the surface...is pitch black in the main body.
- Speaking of lighting, the Nether has no ambient light, which combined with the very range-limited lighting, leads to overly-contrasted crimson forests.
- The combat is still...odd, with just too much spam clicking. I don't necessarily like Minecraft's current combat, but I certainly don't like the feeling I'm in a boxing match when I'm using a sword either. Just a small extra cooldown on swing speed, and some more knockback to the enemy, I think would be good.
Re: [Game] MineClone2 [0.84.0]
Would never have guessed aux1 is sprint, anyways, continued list, including some things I noticed but forgot about:
- There's no animation when you're in a nether portal, so no indication it's preparing to send you off.
- Mobs seem to spawn more in caves than even old Minecraft (before they needed light level 0), which makes even minorly off torch placement a nightmare.
- Beds are overly restrictive about conditions for entering them (why is a slight bit of movement a problem? I know in Minecraft there's an issue with fly detection and beds, but that should already not be an issue here with the range check. The movement thing is mainly an issue because jumping onto a bed has it bounce you.)
- Water takes longer to go away than in Minecraft, meaning you can't place water for a moment to just get it to spread out once and bucket it away so it only spreads once, which is important for easy obsidian casting.
- Spiders still aren't hostile in underground during day, which is bizarre (I know this one was present back in the day, but it's just so jarring).
- The shield doesn't immediately raise with a weapon equipped, making combat even with it rather messy.
Re: [Game] MineClone2 [0.84.0]
The light rules follow pre MC 1.18. See https://git.minetest.land/MineClone2/Mi ... ssues/3942 for discussion of supporting MC 1.18+ light rules.
Re: [Game] MineClone2 [0.84.0]
You can try changing movement_speed_jump in mineclone2/minetest.conf. It's 6.6, I changed it to 6.0 and it seemed OK.
There are a bunch of movement settings in there, I'm not sure how they impact each other. I tried searching for some good settings, but didn't find anything useful :(
You can find the docs for the settings at https://github.com/minetest/minetest/bl ... ample#L861
Who is online
Users browsing this forum: No registered users and 1 guest