ReinforceZwei

Results 67 comments of ReinforceZwei

You cannot have two client running at the same time when `ReplayCapture` is enabled as they share the same cache file. Turning your question to bug report.

Take a look at how `AutoTree` bot check for sapling in the player hot bar: https://github.com/ORelio/Minecraft-Console-Client/blob/e90e7b6b2ca722a320d233e34a0143a0c9a1b4ba/MinecraftClient/config/ChatBots/AutoTree.cs#L103-L125 You could do the similar thing by writing your own ChatBot.

> For iPhone/iOS users, there is [iSH](https://github.com/ish-app/ish), sadly I do not own an iPhone so I can't test it out. > > If someone who has an iPhone and some...

Yes, iPhone is using ARM CPU, but iSH is not. iSH is using x86 architecture.

Chinese character takes two spaces on console. When backspace is pressed, only one space is cleared, leaving behind a space on the console that cannot be deleted. Not only backspace,...

I have wrote a similar console like this but in javascript. My way to handle it is clear the whole line and write them back after finish process the key....

@ORelio It is very hard (for me) to modify the current exists code because I don't understand what it is doing. I might re-write almost every method if I attempt...

Actually I don't understand what [this](https://github.com/ORelio/Minecraft-Console-Client/blob/master/MinecraftClient/ConsoleIO.cs#L422) part do. (the `Console.Cursor` and `Console.Buffer`) Are they for handling multiple lines input? Edited I figured out it myself. It is for multiple lines...

Ok, Chinese characters worked now :smile: See my [repo](https://github.com/ReinforceZwei/ConsoleIO/blob/master/ConsoleIO/ConsoleIO.cs) The bug mentioned above have not been fixed yet. Edited This is still not perfect. Characters may left over if there...

I have tested sending a left arrow key instead of \b in the GoLeft() method but no luck. I will test your code when I get home 😊