├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── USERGUIDE.md ├── bot.rb ├── channels.txt ├── logs └── .gitkeep ├── pisgPrefix.cfg ├── reg_check.rb ├── settings.example.json └── stats.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/README.md -------------------------------------------------------------------------------- /USERGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/USERGUIDE.md -------------------------------------------------------------------------------- /bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/bot.rb -------------------------------------------------------------------------------- /channels.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pisgPrefix.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reg_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/reg_check.rb -------------------------------------------------------------------------------- /settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/settings.example.json -------------------------------------------------------------------------------- /stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flotwig/StatsBot/HEAD/stats.rb --------------------------------------------------------------------------------