• This repository has been archived on 11/Mar/2018
  • Stars
    star
    231
  • Rank 167,786 (Top 4 %)
  • Language
    CoffeeScript
  • License
    MIT License
  • Created over 12 years ago
  • Updated over 12 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Minecraft hubot adapter

hubot-minecraft

by Chris Lloyd @ Minefold

This adapter will connect your Hubot instance to a Mincraft server. You'll need a seperate paid Minecraft account to connect.

This adapter is BETA. It contains what we think is a pretty complete implementation of the Minecraft protocol, but there are definitely cases that it can't handle.

Marvin

or check out a quick video of it in action.

Configuring the Adapter

The Minecraft adapter requires the following environment variables.

  • HUBOT_MINECRAFT_HOST
  • HUBOT_MINECRAFT_PORT
  • HUBOT_MINECRAFT_USERNAME
  • HUBOT_MINECRAFT_PASSWORD

Minecraft Host

This is your Minecraft server's host. It'll will look something like pluto.minefold.com.

Minecraft Port

This is the port your Minecraft server is running on. By default, Minecraft runs on port 25565.

Minecraft Username

This is the username of a paid Minecraft account.

Minecraft Password

This is the Minecraft account's password.

Configuring the variables on Heroku

% heroku config:add HUBOT_MINECRAFT_HOST="..."
% heroku config:add HUBOT_MINECRAFT_PORT="..."
% heroku config:add HUBOT_MINECRAFT_USERNAME="..."
% heroku config:add HUBOT_MINECRAFT_PASSWORD="..."

Configuring the variables on UNIX

% export HUBOT_MINECRAFT_HOST="..."
% export HUBOT_MINECRAFT_PORT="..."
% export HUBOT_MINECRAFT_USERNAME="..."
% export HUBOT_MINECRAFT_PASSWORD="..."