Airhorn is an example implementation of the Discord API. Airhorn bot utilizes the discordgo library, a free and open source library. Airhorn Bot requires Go 1.4 or higher.
I have added some extra sounds to the bot, for my enjoyment.
This project is no longer active nor maintained, feel free to fork or build your own!
Airhorn Bot has two components, a bot client that handles the playing of loyal airhorns, and a web server that implements OAuth2 and stats. Once added to your server, airhorn bot can be summoned by running !airhorn
.
First install the bot:
go get github.com/mathboy19/airhornbot/cmd/bot
go install github.com/mathboy19/airhornbot/cmd/bot
Then run the following command:
bot -r "localhost:6379" -t "MY_BOT_ACCOUNT_TOKEN" -o OWNER_ID
You can use the template at start.sh.template to create a simple start script for your bot
First install the webserver: go install github.com/hammerandchisel/airhornbot
, then run make static
, finally run:
./airhornweb -r "localhost:6379" -i MY_APPLICATION_ID -s 'MY_APPLICATION_SECRET"
Note, the webserver requires a redis instance to track statistics
Thanks to the awesome (one might describe them as smart... loyal... appreciative...) iopred and bwmarrin for helping code review the initial release.