deathcap
deathcap
Mining is implement as: start mining, causes mineflayer to dig(), which itself handles continuously mining until the block is broken. So you only need to tap left-click once on a...
http://wiki.vg/Protocol#Player_Digging packet: 0=started digging, 1=canceled, 2=finished mineflayer digging: https://github.com/PrismarineJS/mineflayer/blob/master/lib/plugins/digging.js - sends block_dig with status=0 (start digging), arm_animation every 350 ms (seems to go on too long? at least here), then...
Bugs in current implementation (unclear if in mineflayer or voxel-clientmc): arm swings continuously, sometimes hits https://github.com/PrismarineJS/mineflayer/issues/305 TypeError: Cannot read property 'position' of null in lib/plugins/digging.js:72 location: bot.targetDigBlock.position
Since block mining updates are sent, closing this issue as written, but new issue for improving the behavior: https://github.com/voxel/voxel-clientmc/issues/51
To look into: https://github.com/mhsjlw/minecraft-buildpack > This is a Heroku buildpack that allows you to host a lightweight minecraft server for a few friends using ngrok (for TCP proxy) and heroku...
Vanilla minecraft server (Spigot/Glowstone/Sponge/Forge can come later): https://github.com/jkutner/heroku-buildpack-minecraft
Setup Heroku and Ngrok using instructions at https://github.com/jkutner/heroku-buildpack-minecraft - works! Available vanilla minecraft 1.8.3 server: 0.tcp.ngrok.io:12155 Now it only needs the [wsmc](https://github.com/deathcap/wsmc) proxy. Probably best to run it through [Sponge](https://forums.spongepowered.org/t/voxel-clientmc-a-web-based-minecraft-client-using-the-wsmc-websocket-minecraft-proxy/11340),...
The Heroku dynos spin down after a while - this resets the world, which is ok for a test server (build pack creator suggests backing up to and restoring from...
relevant, some discussion about MC's chunk size https://gist.github.com/Gjum/d28fdb59e588cbbb84c4 ``` 21:36 btw, this would be a good time to change to 32x32x32 chunk size :D 21:36 Double your draw distance 21:37...
This might improve GH-18