iamkurcze
iamkurcze
> 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...
thx ill try my best
also how to preform command like /inventory from c# code ??
oh ok
i get this: [MCC] [Script] Script 'RepairStoneGenerator.cs' failed to run (LoadError). [MCC] [Script] System.InvalidOperationException: ID expected
Everything works perfectly, just last question, how to, using c# code, click a inventory slot. I'd like to achieve the same effect as `/inventory container click `, oh and how...
> Have a look into the `Inventory` command file. [Here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Commands/Inventory.cs#L90) and [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Commands/Inventory.cs#L117). Amazing, how to get the handler ?, cuz im lookin at [https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Scripting/ChatBot.cs](url) and i see this:` //Handler will...
hey, ive written the bot, but it says that`[MCC] Script failed to clean-up` idk what to do
``` //MCCScript 1.0 /* This is a sample script that will load a ChatBot into Minecraft Console Client * Simply execute the script once with /script or the script scheduler...
> `Script failed to clean-up` is a generic message. It simply means that the script did not stop running, i.e. it's running on a loop of some kind. > >...