Skip to content

Instantly share code, notes, and snippets.

@jimmyken793
Created December 11, 2013 15:33
Show Gist options
  • Save jimmyken793/7912482 to your computer and use it in GitHub Desktop.
Save jimmyken793/7912482 to your computer and use it in GitHub Desktop.
var mineflayer = require('mineflayer'),
repl = require("repl");
var bot = mineflayer.createBot({
host: "SERVER_ADDRESS",
username: "BOT_NAME"
});
bot.on('spawn', function(){
});
bot.on('message', function(message,jsonMsg) {
console.log(message);
if(message.text == "§6若想接受傳送,輸入 §4/tpaccept§6"){
bot.chat("/tpaccept");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment