├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── RRR.py ├── config.json ├── fmuser.json ├── grouplist.json ├── plugins ├── __init__.py ├── about.py ├── autoFacebookVideo.py ├── autoImgur.py ├── autoMessages.py ├── autoTumblr.py ├── autogfycat.py ├── autogiphy.py ├── autoig.py ├── autoreddit.py ├── autosteam.py ├── autotweet.py ├── autoyoutube.py ├── bin.py ├── btc.py ├── calc.py ├── crypto.py ├── delete.py ├── dt.py ├── echo.py ├── flip.py ├── fmalbums.py ├── fmgrid.py ├── fmtop.py ├── fmuser.py ├── inlineImgur.py ├── lastfm.py ├── length.py ├── lyrics.py ├── ml.py ├── np.py ├── ping.py ├── premades.py ├── quiet.py ├── r.py ├── roll.py ├── sendmessage.py ├── start.py ├── stats.py ├── steam.py ├── steamdetails.py ├── steamid.py ├── steamnews.py ├── steampage.py ├── steamsales.py ├── tw.py ├── ud.py ├── weather.py └── wiki.py ├── quietlist.json ├── userlist.json └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/README.md -------------------------------------------------------------------------------- /RRR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/RRR.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/config.json -------------------------------------------------------------------------------- /fmuser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /grouplist.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/about.py -------------------------------------------------------------------------------- /plugins/autoFacebookVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoFacebookVideo.py -------------------------------------------------------------------------------- /plugins/autoImgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoImgur.py -------------------------------------------------------------------------------- /plugins/autoMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoMessages.py -------------------------------------------------------------------------------- /plugins/autoTumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoTumblr.py -------------------------------------------------------------------------------- /plugins/autogfycat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autogfycat.py -------------------------------------------------------------------------------- /plugins/autogiphy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autogiphy.py -------------------------------------------------------------------------------- /plugins/autoig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoig.py -------------------------------------------------------------------------------- /plugins/autoreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoreddit.py -------------------------------------------------------------------------------- /plugins/autosteam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autosteam.py -------------------------------------------------------------------------------- /plugins/autotweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autotweet.py -------------------------------------------------------------------------------- /plugins/autoyoutube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/autoyoutube.py -------------------------------------------------------------------------------- /plugins/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/bin.py -------------------------------------------------------------------------------- /plugins/btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/btc.py -------------------------------------------------------------------------------- /plugins/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/calc.py -------------------------------------------------------------------------------- /plugins/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/crypto.py -------------------------------------------------------------------------------- /plugins/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/delete.py -------------------------------------------------------------------------------- /plugins/dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/dt.py -------------------------------------------------------------------------------- /plugins/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/echo.py -------------------------------------------------------------------------------- /plugins/flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/flip.py -------------------------------------------------------------------------------- /plugins/fmalbums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/fmalbums.py -------------------------------------------------------------------------------- /plugins/fmgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/fmgrid.py -------------------------------------------------------------------------------- /plugins/fmtop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/fmtop.py -------------------------------------------------------------------------------- /plugins/fmuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/fmuser.py -------------------------------------------------------------------------------- /plugins/inlineImgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/inlineImgur.py -------------------------------------------------------------------------------- /plugins/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/lastfm.py -------------------------------------------------------------------------------- /plugins/length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/length.py -------------------------------------------------------------------------------- /plugins/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/lyrics.py -------------------------------------------------------------------------------- /plugins/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/ml.py -------------------------------------------------------------------------------- /plugins/np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/np.py -------------------------------------------------------------------------------- /plugins/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/ping.py -------------------------------------------------------------------------------- /plugins/premades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/premades.py -------------------------------------------------------------------------------- /plugins/quiet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/quiet.py -------------------------------------------------------------------------------- /plugins/r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/r.py -------------------------------------------------------------------------------- /plugins/roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/roll.py -------------------------------------------------------------------------------- /plugins/sendmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/sendmessage.py -------------------------------------------------------------------------------- /plugins/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/start.py -------------------------------------------------------------------------------- /plugins/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/stats.py -------------------------------------------------------------------------------- /plugins/steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/steam.py -------------------------------------------------------------------------------- /plugins/steamdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/steamdetails.py -------------------------------------------------------------------------------- /plugins/steamid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/steamid.py -------------------------------------------------------------------------------- /plugins/steamnews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/steamnews.py -------------------------------------------------------------------------------- /plugins/steampage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/steampage.py -------------------------------------------------------------------------------- /plugins/steamsales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/steamsales.py -------------------------------------------------------------------------------- /plugins/tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/tw.py -------------------------------------------------------------------------------- /plugins/ud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/ud.py -------------------------------------------------------------------------------- /plugins/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/weather.py -------------------------------------------------------------------------------- /plugins/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/plugins/wiki.py -------------------------------------------------------------------------------- /quietlist.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /userlist.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronikart/RadRetroRobot/HEAD/utils.py --------------------------------------------------------------------------------