-
Notifications
You must be signed in to change notification settings - Fork 14
Extensions
Extensions are categorised sets of commands that add behaviour to Panda.
If you want to propose for new extensions, feel free to join the support server to do so.
The core features of the bot that should always be loaded.
Includes and info command to display some info about the bot and management commands to load, unload and reload extensions.
Simple to use music player for your voice chat parties.
The play command accepts url that youtube-dl supports and search queries that will be executed on youtube to play the first result.
The extension provides volume control, a playlist feature that queues up songs to play and voting to skip the current song.
Allows you to follow Twitter accounts and forward their tweets in a channel of your choice.
This extension needs some extra setup to allow the bot to access the Twitter API to search for users and receive the tweets:
- Head to https://developer.twitter.com/, hover your account's name on the top right and click on
Apps.
You may need to apply for a developer account to access this page. - Click on
Create an app, fill the required fields and create your app. - Go in the
Keys and tokensand copy your consumer api key and consumer api secret key. - Click on the
generatebutton and copy the access token and access token secret. - Go into the Panda's folder and, inside the
conffolder, create the filetwitter.jsonlike so :
{
"credentials": {
"consumer_key": "insert your consumer key here",
"consumer_secret": "insert your consumer secret here",
"access_token": "insert your access token here",
"access_token_secret": "insert your access token secret here",
"__class__": "ConfigElement"
},
"__class__": "ConfigElement",
"follows": {}
}- Modify
conf/panda.jsonand change theextensionslist to["music", "twitter"]. - Start/Restart the bot.