├── .eslintrc.js ├── .gitignore ├── README-en.md ├── README.md ├── config └── bachero.jsonc ├── functions.js ├── index.js ├── modules ├── bachero.module.analytics │ ├── analytics.js │ └── manifest.jsonc ├── bachero.module.autolink │ ├── README.md │ ├── autolink-config.js │ ├── autolink.js │ └── manifest.jsonc ├── bachero.module.botInfo │ ├── botinfo.js │ └── manifest.jsonc ├── bachero.module.colorInfo │ ├── color.js │ └── manifest.jsonc ├── bachero.module.contributors │ ├── contributeurs.js │ └── manifest.jsonc ├── bachero.module.crawldoc │ ├── docs.js │ └── manifest.jsonc ├── bachero.module.databaseTest │ ├── delete.js │ ├── get.js │ ├── getAll.js │ ├── has.js │ ├── manifest.jsonc │ └── set.js ├── bachero.module.discordWhois │ ├── main.js │ └── manifest.jsonc ├── bachero.module.fake │ ├── fake-config.js │ ├── fake.js │ └── manifest.jsonc ├── bachero.module.findmeme │ ├── findmeme.js │ └── manifest.jsonc ├── bachero.module.gamestats │ ├── README.md │ ├── brawlstars.js │ ├── clashofclans.js │ ├── clashroyale.js │ ├── gamestats.js │ ├── manifest.jsonc │ ├── monkeytype.js │ └── paladium.js ├── bachero.module.help │ ├── help.js │ └── manifest.jsonc ├── bachero.module.images │ ├── README.md │ ├── faketweet.js │ ├── manifest.jsonc │ └── web │ │ ├── chirp-font │ │ ├── Chirp-Bold.eot │ │ ├── Chirp-Bold.ttf │ │ ├── Chirp-Bold.woff2 │ │ ├── Chirp-Heavy.eot │ │ ├── Chirp-Heavy.ttf │ │ ├── Chirp-Heavy.woff2 │ │ ├── Chirp-Medium.eot │ │ ├── Chirp-Medium.ttf │ │ ├── Chirp-Medium.woff2 │ │ ├── Chirp-Regular.eot │ │ ├── Chirp-Regular.ttf │ │ ├── Chirp-Regular.woff2 │ │ └── stylesheet.css │ │ ├── faketweet.html │ │ ├── images │ │ ├── alertesinfos.png │ │ ├── bfmtv.png │ │ ├── brunoattal.png │ │ ├── cerfiafr.png │ │ ├── damienrieu.png │ │ ├── elonmusk.png │ │ ├── emmanuelmacron.png │ │ ├── generalaoun.png │ │ ├── jeanlucmelenchon.png │ │ ├── jeanmessiha.png │ │ ├── jordanbardella.png │ │ ├── louisboyard.png │ │ ├── openai.png │ │ ├── pecresse.png │ │ ├── pediavenir.png │ │ ├── tiboinshape.png │ │ ├── youridefou.png │ │ └── zen.png │ │ └── libs │ │ └── twemoji.min.js ├── bachero.module.issue │ ├── manifest.jsonc │ └── report.js ├── bachero.module.level │ ├── level-leaderboard.js │ ├── level-manage.js │ ├── main.js │ └── manifest.jsonc ├── bachero.module.lyrics │ ├── lyrics.js │ └── manifest.jsonc ├── bachero.module.message │ ├── clear.js │ ├── embed.js │ ├── first.js │ ├── manifest.jsonc │ ├── say.js │ └── slowmode.js ├── bachero.module.minecraft │ ├── manifest.jsonc │ └── mc-server.js ├── bachero.module.moduleInfo │ ├── manifest.jsonc │ └── module.js ├── bachero.module.pfc │ ├── manifest.jsonc │ └── pfc.js ├── bachero.module.ping │ ├── manifest.jsonc │ └── ping.js ├── bachero.module.short │ ├── manifest.jsonc │ ├── short-config.js │ └── short.js ├── bachero.module.showReports │ ├── manifest.jsonc │ └── showInfo.js ├── bachero.module.snipe │ ├── README.md │ ├── manifest.jsonc │ ├── snipe-config.js │ ├── snipe.js │ └── utils.js ├── bachero.module.textCommand │ ├── manifest.jsonc │ └── slashtotext.js ├── bachero.module.timer │ ├── manifest.jsonc │ └── timer.js ├── bachero.module.transports │ ├── divia.js │ ├── fluo.js │ ├── manifest.jsonc │ └── ratp.js ├── bachero.module.typeracer │ ├── manifest.jsonc │ └── typeracer.js ├── bachero.module.unshort │ ├── manifest.jsonc │ └── unshort.js ├── bachero.module.userinfo │ ├── avatar.js │ ├── manifest.jsonc │ └── userinfo.js ├── bachero.module.weather │ ├── README.md │ ├── manifest.jsonc │ └── weather.js └── el2zay.elbot │ ├── README.md │ ├── ban.js │ ├── bingchiling.js │ ├── coinflip.js │ ├── count.js │ ├── freevbucks.js │ ├── kick.js │ ├── lock.js │ ├── manifest.jsonc │ ├── moyenne.js │ ├── nuke.js │ ├── qi.js │ ├── qr.js │ ├── random-de.js │ ├── random-letter.js │ ├── random-map-point.js │ ├── random-number.js │ ├── random-time.js │ ├── removebg.js │ ├── roulette.js │ ├── set_birthday.js │ ├── sondage.js │ ├── unban.js │ ├── unlock.js │ └── yesno.js └── package.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/README.md -------------------------------------------------------------------------------- /config/bachero.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/config/bachero.jsonc -------------------------------------------------------------------------------- /functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/functions.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/index.js -------------------------------------------------------------------------------- /modules/bachero.module.analytics/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.analytics/analytics.js -------------------------------------------------------------------------------- /modules/bachero.module.analytics/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.analytics/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.autolink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.autolink/README.md -------------------------------------------------------------------------------- /modules/bachero.module.autolink/autolink-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.autolink/autolink-config.js -------------------------------------------------------------------------------- /modules/bachero.module.autolink/autolink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.autolink/autolink.js -------------------------------------------------------------------------------- /modules/bachero.module.autolink/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.autolink/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.botInfo/botinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.botInfo/botinfo.js -------------------------------------------------------------------------------- /modules/bachero.module.botInfo/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.botInfo/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.colorInfo/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.colorInfo/color.js -------------------------------------------------------------------------------- /modules/bachero.module.colorInfo/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.colorInfo/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.contributors/contributeurs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.contributors/contributeurs.js -------------------------------------------------------------------------------- /modules/bachero.module.contributors/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.contributors/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.crawldoc/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.crawldoc/docs.js -------------------------------------------------------------------------------- /modules/bachero.module.crawldoc/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.crawldoc/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.databaseTest/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.databaseTest/delete.js -------------------------------------------------------------------------------- /modules/bachero.module.databaseTest/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.databaseTest/get.js -------------------------------------------------------------------------------- /modules/bachero.module.databaseTest/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.databaseTest/getAll.js -------------------------------------------------------------------------------- /modules/bachero.module.databaseTest/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.databaseTest/has.js -------------------------------------------------------------------------------- /modules/bachero.module.databaseTest/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.databaseTest/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.databaseTest/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.databaseTest/set.js -------------------------------------------------------------------------------- /modules/bachero.module.discordWhois/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.discordWhois/main.js -------------------------------------------------------------------------------- /modules/bachero.module.discordWhois/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.discordWhois/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.fake/fake-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.fake/fake-config.js -------------------------------------------------------------------------------- /modules/bachero.module.fake/fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.fake/fake.js -------------------------------------------------------------------------------- /modules/bachero.module.fake/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.fake/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.findmeme/findmeme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.findmeme/findmeme.js -------------------------------------------------------------------------------- /modules/bachero.module.findmeme/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.findmeme/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/README.md -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/brawlstars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/brawlstars.js -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/clashofclans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/clashofclans.js -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/clashroyale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/clashroyale.js -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/gamestats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/gamestats.js -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/monkeytype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/monkeytype.js -------------------------------------------------------------------------------- /modules/bachero.module.gamestats/paladium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.gamestats/paladium.js -------------------------------------------------------------------------------- /modules/bachero.module.help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.help/help.js -------------------------------------------------------------------------------- /modules/bachero.module.help/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.help/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/README.md -------------------------------------------------------------------------------- /modules/bachero.module.images/faketweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/faketweet.js -------------------------------------------------------------------------------- /modules/bachero.module.images/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Bold.eot -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Bold.ttf -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Bold.woff2 -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Heavy.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Heavy.eot -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Heavy.ttf -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Heavy.woff2 -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Medium.eot -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Medium.ttf -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Medium.woff2 -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Regular.eot -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Regular.ttf -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/Chirp-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/Chirp-Regular.woff2 -------------------------------------------------------------------------------- /modules/bachero.module.images/web/chirp-font/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/chirp-font/stylesheet.css -------------------------------------------------------------------------------- /modules/bachero.module.images/web/faketweet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/faketweet.html -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/alertesinfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/alertesinfos.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/bfmtv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/bfmtv.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/brunoattal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/brunoattal.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/cerfiafr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/cerfiafr.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/damienrieu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/damienrieu.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/elonmusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/elonmusk.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/emmanuelmacron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/emmanuelmacron.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/generalaoun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/generalaoun.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/jeanlucmelenchon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/jeanlucmelenchon.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/jeanmessiha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/jeanmessiha.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/jordanbardella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/jordanbardella.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/louisboyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/louisboyard.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/openai.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/pecresse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/pecresse.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/pediavenir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/pediavenir.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/tiboinshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/tiboinshape.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/youridefou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/youridefou.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/images/zen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/images/zen.png -------------------------------------------------------------------------------- /modules/bachero.module.images/web/libs/twemoji.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.images/web/libs/twemoji.min.js -------------------------------------------------------------------------------- /modules/bachero.module.issue/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.issue/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.issue/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.issue/report.js -------------------------------------------------------------------------------- /modules/bachero.module.level/level-leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.level/level-leaderboard.js -------------------------------------------------------------------------------- /modules/bachero.module.level/level-manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.level/level-manage.js -------------------------------------------------------------------------------- /modules/bachero.module.level/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.level/main.js -------------------------------------------------------------------------------- /modules/bachero.module.level/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.level/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.lyrics/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.lyrics/lyrics.js -------------------------------------------------------------------------------- /modules/bachero.module.lyrics/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.lyrics/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.message/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.message/clear.js -------------------------------------------------------------------------------- /modules/bachero.module.message/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.message/embed.js -------------------------------------------------------------------------------- /modules/bachero.module.message/first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.message/first.js -------------------------------------------------------------------------------- /modules/bachero.module.message/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.message/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.message/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.message/say.js -------------------------------------------------------------------------------- /modules/bachero.module.message/slowmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.message/slowmode.js -------------------------------------------------------------------------------- /modules/bachero.module.minecraft/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.minecraft/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.minecraft/mc-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.minecraft/mc-server.js -------------------------------------------------------------------------------- /modules/bachero.module.moduleInfo/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.moduleInfo/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.moduleInfo/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.moduleInfo/module.js -------------------------------------------------------------------------------- /modules/bachero.module.pfc/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.pfc/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.pfc/pfc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.pfc/pfc.js -------------------------------------------------------------------------------- /modules/bachero.module.ping/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.ping/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.ping/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.ping/ping.js -------------------------------------------------------------------------------- /modules/bachero.module.short/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.short/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.short/short-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.short/short-config.js -------------------------------------------------------------------------------- /modules/bachero.module.short/short.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.short/short.js -------------------------------------------------------------------------------- /modules/bachero.module.showReports/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.showReports/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.showReports/showInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.showReports/showInfo.js -------------------------------------------------------------------------------- /modules/bachero.module.snipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.snipe/README.md -------------------------------------------------------------------------------- /modules/bachero.module.snipe/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.snipe/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.snipe/snipe-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.snipe/snipe-config.js -------------------------------------------------------------------------------- /modules/bachero.module.snipe/snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.snipe/snipe.js -------------------------------------------------------------------------------- /modules/bachero.module.snipe/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.snipe/utils.js -------------------------------------------------------------------------------- /modules/bachero.module.textCommand/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.textCommand/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.textCommand/slashtotext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.textCommand/slashtotext.js -------------------------------------------------------------------------------- /modules/bachero.module.timer/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.timer/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.timer/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.timer/timer.js -------------------------------------------------------------------------------- /modules/bachero.module.transports/divia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.transports/divia.js -------------------------------------------------------------------------------- /modules/bachero.module.transports/fluo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.transports/fluo.js -------------------------------------------------------------------------------- /modules/bachero.module.transports/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.transports/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.transports/ratp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.transports/ratp.js -------------------------------------------------------------------------------- /modules/bachero.module.typeracer/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.typeracer/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.typeracer/typeracer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.typeracer/typeracer.js -------------------------------------------------------------------------------- /modules/bachero.module.unshort/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.unshort/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.unshort/unshort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.unshort/unshort.js -------------------------------------------------------------------------------- /modules/bachero.module.userinfo/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.userinfo/avatar.js -------------------------------------------------------------------------------- /modules/bachero.module.userinfo/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.userinfo/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.userinfo/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.userinfo/userinfo.js -------------------------------------------------------------------------------- /modules/bachero.module.weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.weather/README.md -------------------------------------------------------------------------------- /modules/bachero.module.weather/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.weather/manifest.jsonc -------------------------------------------------------------------------------- /modules/bachero.module.weather/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/bachero.module.weather/weather.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/README.md -------------------------------------------------------------------------------- /modules/el2zay.elbot/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/ban.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/bingchiling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/bingchiling.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/coinflip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/coinflip.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/count.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/freevbucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/freevbucks.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/kick.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/lock.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/manifest.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/manifest.jsonc -------------------------------------------------------------------------------- /modules/el2zay.elbot/moyenne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/moyenne.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/nuke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/nuke.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/qi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/qi.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/qr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/qr.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/random-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/random-de.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/random-letter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/random-letter.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/random-map-point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/random-map-point.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/random-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/random-number.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/random-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/random-time.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/removebg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/removebg.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/roulette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/roulette.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/set_birthday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/set_birthday.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/sondage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/sondage.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/unban.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/unlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/unlock.js -------------------------------------------------------------------------------- /modules/el2zay.elbot/yesno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/modules/el2zay.elbot/yesno.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bacherobot/bot/HEAD/package.json --------------------------------------------------------------------------------