Yes, deleting that folder removes all old definitions. It is intended to be auto-updated but that was not working in all versions (for various reasons and therefore unfortunately for most releases...). We now have an automatic repair function that helps in some cases.
If you fear to damage anything by deleting files, you can achieve the same thing by:
[View]->[Manage Definitions] and then remove everything
And the reason for the long lasting release process is that both (mrkite and myself) are not playing Minecraft anymore (or only once every 3 month). And as someone already mentioned, full-time job and family absorb most of the time. So there will only be progress during vacation periods.
the current Minecraft code for enchantment information supports only ONE SINGLE enchantment to be transmitted from server to client
my idea is to cycle through all enchantments (if more than one for current seed)
for that a timer is needed on server side (e.g. toggle every second)
the client does not need any modification !!!
This means, that at client side only one enchantment is visible at each time. But if multiple are available for the current seed, they cycle around. So the player can see all of them after some time.
To prevent wrong counting I placed a reseting command to an area where a player has to pass by to get to the grinder. It my case there is a tunnel leading to the grinder and I placed the area to its end. So one regularly updated command block has to do:
/scoreboard players set @p[x=X2,y=Y2,z=Z2,r=3,score_kill_skeleton1_min=1] kill_skeleton1 0
The counting part is similar to the suggestion and uses two command blocks connected via a comparator, a detector and a counter:
The location X1,Y1,Z1 is near the drop shaft and X2,Y2,Z2 is the end of the tunnel and the only entrance to the grinder.
I decrement the detection objective "kill_skeleton1" in the first detection command block to prevent timing glitches when two command blocks handle the same objective. Therefore the second counting command block is only used to increment the final objective "xp_skeleton". The reset and the first detection command block are clocked by a standard redstone clock.
0
Minutor 2.18.0 is released for Minecraft 1.18
0
Hi,
with upcoming 1.18 all of us are probably searching for nice seeds to restart our servers.
But as Amidst is not ready until now, we have to test our seeds with different methods.
I wrote a small script to automate the process of
. . . and then repeat that for all the other hundred seeds you want to test.
SeedPreloader on GitHub
0
Major change is 1.15 support:
New features:
0
No Bedrock support. Minutor is developed for the Java version of Minecraft.
0
There are still problems with the MacOS version.
But you can test the current Windows Build.
0
As it is raining, all wood logs are processed and I'm back at the laptop, you will see some progress soon...
That old commit from beginning of this year solves all 1.14 problems.
These from last month fix some severe trouble with definition files.
And the one from yesterday gives some speed bonus for rendering (8x for me).
0
Yes, deleting that folder removes all old definitions. It is intended to be auto-updated but that was not working in all versions (for various reasons and therefore unfortunately for most releases...). We now have an automatic repair function that helps in some cases.
If you fear to damage anything by deleting files, you can achieve the same thing by:
2
It is released officially!
And the reason for the long lasting release process is that both (mrkite and myself) are not playing Minecraft anymore (or only once every 3 month). And as someone already mentioned, full-time job and family absorb most of the time. So there will only be progress during vacation periods.
Have fun
EtlamGit
0
Can you try to use the old laucher from: https://minecraft.net/en-us/download/alternative
I have simmilar issues with the normal launcher and only on one PC, but the old launcher works.
0
I know that.
(Could we please skip the noob part)
0
Did that, no effect.
0
The old launcher is working fine. So the game itself is not affected, it is a pure launcher problem.
After once starting the old launcher I can play "offline" with the new launcher again (probably within the next 2 weeks).
It seems that the new launcher is not able to do any kind of internet connections.
I already deinstalled/reinstalled the AntiVirus solution and disabled/enabled/checked Firewall settings.
0
I think it is a good chance now, to repeat an idea for Enchant View, I mentioned some time ago:
This means, that at client side only one enchantment is visible at each time. But if multiple are available for the current seed, they cycle around. So the player can see all of them after some time.
0
There are two views, a text and a hex one. It is easier to edit in the "Text View".
0
First set up the scoreboard objectives:
To prevent wrong counting I placed a reseting command to an area where a player has to pass by to get to the grinder. It my case there is a tunnel leading to the grinder and I placed the area to its end. So one regularly updated command block has to do:
The counting part is similar to the suggestion and uses two command blocks connected via a comparator, a detector and a counter:
The location X1,Y1,Z1 is near the drop shaft and X2,Y2,Z2 is the end of the tunnel and the only entrance to the grinder.
I decrement the detection objective "kill_skeleton1" in the first detection command block to prevent timing glitches when two command blocks handle the same objective. Therefore the second counting command block is only used to increment the final objective "xp_skeleton". The reset and the first detection command block are clocked by a standard redstone clock.