Daenges

Results 38 comments of Daenges

> and how to add multiple relative positions? In the current state of the script you can not do this. Just place the rails in a way that gets the...

Okay. After searching what the problem might be for way too long... You need to turn on [terrainandmovements](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Resources/config/MinecraftClient.ini#L35) and inventoryhandling in the config.

If the minecart version does not work, you need to rely on walking. The [MineCube](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/config/ChatBots/MineCube.cs) script should work here as long as there is a 2 high area free from...

You can also get the WIP version [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/1eee1b16fa1fa3233caf2d0447c1f2161e6db91e/MinecraftClient/config/ChatBots/MineCube.cs). You could stop the time, how long the script needs to clear the area and write a task to start it from...

In the current state: No. Currently the pathfinding and walking mechancs are in a state, where they do their job. (Most of the time.) They are clearly improvable and in...

I had a quick look into it. In contrast to sugar cane or cactus it gets more difficult here, since [Material.cs](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Mapping/Material.cs) distinguishes between different crops, but not between their individual...

Unfortunately there is no template for this. You can either write your own C# script and work with the [inventory classes](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/Inventory) or utilize [inventory handling](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Resources/config/MinecraftClient.ini#L36) and try to solve this...

Currently this repository is a bit cluttered, since the major `.Net 5` rework (from `.Net Framework 4.8`) got merged. *Although it is not really necessary for you to know, here...

[This function](https://github.com/MCCTeam/Minecraft-Console-Client/blob/previous/MinecraftClient/McClient.cs#L978) returns all inventories as [Container](https://github.com/MCCTeam/Minecraft-Console-Client/blob/previous/MinecraftClient/Inventory/Container.cs) class (Keep in mind that container `ID 0` is the player inventory). If you look at the attributes you can see that every...