diff options
author | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2016-01-12 10:30:27 -0500 |
---|---|---|
committer | Colin D'Souza <dscdsouza@outlook.com> | 2016-01-12 21:14:30 -0500 |
commit | ec3dc4b0fdedca4c664574ce4b5e959003d6427c (patch) | |
tree | b5aebdee87977054229e36e4ef480749fa3b86ca /README.md | |
parent | Update README.md (diff) | |
download | shulker-ec3dc4b0fdedca4c664574ce4b5e959003d6427c.tar.gz shulker-ec3dc4b0fdedca4c664574ce4b5e959003d6427c.zip |
Update README.md
Diffstat (limited to '')
-rw-r--r-- | README.md | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/README.md b/README.md index 292dbf7..6014972 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,51 @@ ![discord-irc](http://i.giphy.com/6yj4FRw3XZt6M.gif) ## Installation and usage -Clone repository, edit ```config.json``` and change any options, and then, + +In your Minecraft server.properties, make sure you have: +``` +enable-rcon=true +rcon.password=<your password> +rcon.port=<1-65535> +``` + +Run the following on your server hosting (in a screen, and make sure to replace your URL and your log directory location): + +``` sh +tail -F /PATH_TO_MINECRAFT_INSTALL/logs/latest.log | grep --line-buffered ": <" | while read x ; do echo -ne $x | curl -X POST -d @- https://YOUR_URL/minecraft/hook ; done +``` + +Clone repository onto a server, edit ```config.json``` and change any options, and then, ```bash In the repository folder: $ npm install $ npm start ``` +### Default configuration +```js +{ + "PORT": 8000, # Port you want to run the webserver for the hook on + "DISCORD_EMAIL": "example@example.com", # discord email + "DISCORD_PASSWORD": "password123", # discord password + "DISCORD_CHANNEL": "general", # channel for discord bot + "MINECRAFT_SERVER_RCON_IP": "example.com", # minecraft server ip (make sure you have enabled rcon) + "MINECRAFT_SERVER_RCON_PORT": <1-65535>, # minecraft server rcon port + "MINECRAFT_SERVER_RCON_PASSWORD": "<your password>", # minecraft server rcon password + "WEBHOOK": "/minecraft/hook", # web hook, where to send the log to + "REGEX_MATCH_CHAT_MC": "\\[Server thread/INFO\\]: <(.*)> (.*)", # what to match for chat (best to leave as default) + "REGEX_IGNORED_CHAT": "packets too frequently", # what to ignore, you can put any regex for swear words for example and it will be ignored + "DEBUG": false # dev debugging +} +``` + + ## Tests Run the tests with: ```bash $ npm test ``` + +## License + +ISC. See `LICENSE`. |