/arkbot

A small Discord bot to report the status of a set of ARK game servers.

Primary LanguageGo

arkbot

arkbot is a small bot to monitor a set of ARK servers and report on which of them are online, what map they are serving, and how many players are online.

Running the bot

The bot is most easily run as a docker container. Configure your bot token, channel id, and list of servers as environment variables.

docker run -d \
    -e ARKBOT_TOKEN="XXXXXXXXXXXXXXXXXXX" \
    -e ARKBOT_CHANNEL="01234567890" \
    -e ARKBOT_SERVERS="my.server.com:12345,my.other.server.com:56789" \
    --name=arkbot justinian/arkbot

Thanks

This repository mostly just steals from my discord dice bot and the discordgo airhorn example. Many thanks to bwmarrin for Discordgo and the great examples.