├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── Atlas.js ├── CONTRIBUTING.md ├── Dockerfile ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README-OLD.md ├── README.md ├── crowdin.yml ├── docker-compose.yml ├── index.js ├── lavalink.env ├── locales ├── source │ ├── commands.json │ ├── general.json │ └── info.json └── translated │ ├── ar-SA │ ├── commands.json │ ├── general.json │ └── info.json │ ├── cs-CZ │ ├── commands.json │ ├── general.json │ └── info.json │ ├── de-DE │ ├── commands.json │ ├── general.json │ └── info.json │ ├── el-GR │ ├── commands.json │ ├── general.json │ └── info.json │ ├── en-PT │ ├── commands.json │ ├── general.json │ └── info.json │ ├── es-ES │ ├── commands.json │ ├── general.json │ └── info.json │ ├── fi-FI │ ├── commands.json │ ├── general.json │ └── info.json │ ├── fil-PH │ ├── commands.json │ ├── general.json │ └── info.json │ ├── fr-FR │ ├── commands.json │ ├── general.json │ └── info.json │ ├── he-IL │ ├── commands.json │ ├── general.json │ └── info.json │ ├── id-ID │ ├── commands.json │ ├── general.json │ └── info.json │ ├── it-IT │ ├── commands.json │ ├── general.json │ └── info.json │ ├── ja-JP │ ├── commands.json │ ├── general.json │ └── info.json │ ├── ko-KR │ ├── commands.json │ ├── general.json │ └── info.json │ ├── nl-NL │ ├── commands.json │ ├── general.json │ └── info.json │ ├── no-NO │ ├── commands.json │ ├── general.json │ └── info.json │ ├── pl-PL │ ├── commands.json │ ├── general.json │ └── info.json │ ├── pt-BR │ ├── commands.json │ ├── general.json │ └── info.json │ ├── pt-PT │ ├── commands.json │ ├── general.json │ └── info.json │ ├── ru-RU │ ├── commands.json │ ├── general.json │ └── info.json │ ├── sv-SE │ ├── commands.json │ ├── general.json │ └── info.json │ ├── tr-TR │ ├── commands.json │ ├── general.json │ └── info.json │ ├── vi-VN │ ├── commands.json │ ├── general.json │ └── info.json │ └── zh-CN │ ├── commands.json │ ├── general.json │ └── info.json ├── mongo.env ├── package.json ├── src ├── actionsInterval.js ├── addons │ ├── Guild │ │ ├── client.js │ │ └── me.js │ ├── Member │ │ ├── bannable.js │ │ ├── highestRole.js │ │ ├── kickable.js │ │ ├── punishable.js │ │ ├── roleObjects.js │ │ └── tag.js │ ├── Message │ │ └── guild.js │ ├── Permission │ │ └── has.js │ ├── Role │ │ └── higherThan.js │ ├── User │ │ └── tag.js │ └── index.js ├── agenda.js ├── autoscale.js ├── cache.js ├── commands │ ├── Configuration │ │ ├── filters │ │ │ ├── action.js │ │ │ ├── index.js │ │ │ └── list.js │ │ ├── locale.js │ │ ├── log │ │ │ ├── actions.js │ │ │ ├── errors.js │ │ │ ├── index.js │ │ │ └── moderation.js │ │ ├── togglecommand.js │ │ └── toggleplugin.js │ ├── Fun │ │ ├── 8ball.js │ │ ├── achievement.js │ │ ├── advice.js │ │ ├── captcha.js │ │ ├── cat.js │ │ ├── catfact.js │ │ ├── chucknorris.js │ │ ├── coinflip.js │ │ ├── cowboy.js │ │ ├── dadjoke.js │ │ ├── discrim.js │ │ ├── dog.js │ │ ├── emojify.js │ │ ├── fact.js │ │ ├── genavatar.js │ │ ├── gotcharacter.js │ │ ├── gothouse.js │ │ ├── lmgtfy.js │ │ ├── meme.js │ │ ├── neat.js │ │ ├── needsmorejpeg.js │ │ ├── randomcase.js │ │ ├── randomurban.js │ │ ├── ship.js │ │ ├── smalltext.js │ │ ├── starterpack.js │ │ ├── texttoemoji.js │ │ ├── trumpgen.js │ │ ├── urban.js │ │ ├── vaporwave.js │ │ ├── wiki.js │ │ ├── wouldyourather.js │ │ ├── xkcd.js │ │ └── yesno.js │ ├── Info │ │ ├── dashboard.js │ │ ├── help.js │ │ ├── info.js │ │ ├── invite.js │ │ ├── nodes.js │ │ ├── patreon.js │ │ ├── ping.js │ │ ├── support.js │ │ ├── uptime.js │ │ └── version.js │ ├── Levels │ │ ├── leaderboard.js │ │ └── level.js │ ├── Moderation │ │ ├── ban.js │ │ ├── funban.js │ │ ├── inviteinfo.js │ │ ├── kick.js │ │ ├── move.js │ │ ├── mute.js │ │ ├── purge │ │ │ ├── any.js │ │ │ ├── endswith.js │ │ │ ├── files.js │ │ │ ├── images.js │ │ │ ├── includes.js │ │ │ ├── index.js │ │ │ ├── invites.js │ │ │ ├── links.js │ │ │ ├── not.js │ │ │ ├── startswith.js │ │ │ └── user.js │ │ ├── purgeban.js │ │ ├── setlevel.js │ │ ├── slowmode.js │ │ ├── togglementionable.js │ │ ├── unban.js │ │ ├── unmute.js │ │ ├── warn │ │ │ ├── add.js │ │ │ ├── index.js │ │ │ ├── remove.js │ │ │ └── view.js │ │ └── warnings.js │ ├── Music │ │ ├── autoplay.js │ │ ├── join.js │ │ ├── leave.js │ │ ├── next.js │ │ ├── nowplaying.js │ │ ├── pause.js │ │ ├── play.js │ │ ├── playlist │ │ │ ├── addqueue.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── index.js │ │ │ ├── list.js │ │ │ ├── play.js │ │ │ └── removetrack.js │ │ ├── queue.js │ │ ├── remove.js │ │ ├── repeat.js │ │ ├── resume.js │ │ ├── seek.js │ │ ├── shift.js │ │ ├── shuffle.js │ │ ├── stop.js │ │ └── volume.js │ ├── Roles │ │ └── iam.js │ ├── Tickets │ │ └── ticket │ │ │ ├── add.js │ │ │ ├── close.js │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── remove.js │ │ │ ├── suffix.js │ │ │ └── transcript.js │ ├── Utilities │ │ ├── advancedembed.js │ │ ├── avatar │ │ │ ├── index.js │ │ │ ├── server.js │ │ │ └── user.js │ │ ├── botinfo.js │ │ ├── channelinfo.js │ │ ├── channelspaces.js │ │ ├── convert.js │ │ ├── embed.js │ │ ├── eval.js │ │ ├── google.js │ │ ├── haveibeenpwned.js │ │ ├── id.js │ │ ├── inrole.js │ │ ├── isspass.js │ │ ├── joined.js │ │ ├── membercount.js │ │ ├── minecraft.js │ │ ├── movie.js │ │ ├── quote.js │ │ ├── randomcolor.js │ │ ├── reddit.js │ │ ├── remindme.js │ │ ├── resolveid.js │ │ ├── roleinfo.js │ │ ├── say.js │ │ ├── serverinfo.js │ │ ├── shorten.js │ │ ├── show.js │ │ ├── someone.js │ │ ├── spacex │ │ │ ├── dragons.js │ │ │ ├── index.js │ │ │ ├── launches.js │ │ │ ├── rockets.js │ │ │ └── ships.js │ │ ├── tageval.js │ │ ├── time.js │ │ ├── weather.js │ │ └── whois.js │ └── index.js ├── constants.js ├── data │ ├── currencyCodes.json │ ├── discordCodes.json │ ├── emojiLocales.js │ ├── facts.json │ ├── gameOfThrones │ │ ├── books.json │ │ ├── characters.json │ │ └── houses.json │ ├── languagemap.json │ └── trump │ │ └── quotes.json ├── events │ ├── channelCreate.js │ ├── channelDelete.js │ ├── debug.js │ ├── guildBanAdd.js │ ├── guildBanRemove.js │ ├── guildCreate.js │ ├── guildDelete.js │ ├── guildEmojisUpdate.js │ ├── guildMemberAdd.js │ ├── guildMemberRemove.js │ ├── guildMemberUpdate.js │ ├── guildRoleCreate.js │ ├── guildRoleDelete.js │ ├── guildRoleUpdate.js │ ├── guildUpdate.js │ ├── messageCreate.js │ ├── messageDelete.js │ ├── messageReactionAdd.js │ ├── messageReactionRemove.js │ ├── messageUpdate.js │ ├── ready.js │ ├── voiceChannelLeave.js │ └── voiceChannelSwitch.js ├── filters │ ├── capitalization.js │ ├── cursing.js │ ├── emoji.js │ ├── invites.js │ ├── links.js │ ├── mentions.js │ ├── phrases.js │ └── spam.js ├── schemas │ ├── embed.js │ ├── mute.js │ └── reminder.js ├── structures │ ├── Action.js │ ├── Command.js │ ├── Database.js │ ├── EmojiCollector.js │ ├── Filter.js │ ├── MessageCollector.js │ ├── Paginator.js │ ├── Player.js │ ├── PlayerManager.js │ ├── PlayerResponder.js │ ├── Plugin.js │ ├── Responder.js │ ├── Settings.js │ ├── Spotify.js │ ├── User.js │ └── index.js ├── tagengine │ ├── Parser.js │ ├── TagError.js │ ├── Token.js │ ├── commandTag.js │ ├── index.js │ ├── interpreter.js │ ├── lexer.js │ ├── loader.js │ └── tags │ │ ├── and.js │ │ ├── args.js │ │ ├── catch.js │ │ ├── channel │ │ ├── awaitmessage.js │ │ ├── createdAt.js │ │ ├── id.js │ │ ├── lastMessageID.js │ │ ├── mention.js │ │ ├── middleware.js │ │ ├── name.js │ │ ├── nsfw.js │ │ ├── send.js │ │ ├── topic.js │ │ └── type.js │ │ ├── choose.js │ │ ├── delete.js │ │ ├── emoji │ │ ├── category.js │ │ ├── char.js │ │ ├── middleware.js │ │ └── name.js │ │ ├── find.js │ │ ├── get.js │ │ ├── guild │ │ ├── channelCount.js │ │ ├── createdAt.js │ │ ├── defaultNotifications.js │ │ ├── icon.js │ │ ├── iconURL.js │ │ ├── id.js │ │ ├── memberCount.js │ │ ├── name.js │ │ ├── ownerID.js │ │ ├── prefix.js │ │ ├── region.js │ │ ├── roleCount.js │ │ └── shard.js │ │ ├── if.js │ │ ├── l.js │ │ ├── length.js │ │ ├── log.js │ │ ├── lower.js │ │ ├── math.js │ │ ├── message │ │ ├── author.js │ │ ├── channelID.js │ │ ├── cleanContent.js │ │ ├── content.js │ │ ├── delete.js │ │ ├── hasEmbed.js │ │ ├── id.js │ │ ├── label.js │ │ ├── middleware.js │ │ ├── pinned.js │ │ ├── react.js │ │ └── tts.js │ │ ├── note.js │ │ ├── or.js │ │ ├── perget.js │ │ ├── perset.js │ │ ├── r.js │ │ ├── randstr.js │ │ ├── range.js │ │ ├── replace.js │ │ ├── role │ │ ├── color.js │ │ ├── createdAt.js │ │ ├── hoist.js │ │ ├── id.js │ │ ├── managed.js │ │ ├── memberCount.js │ │ ├── mention.js │ │ ├── mentionable.js │ │ ├── middleware.js │ │ ├── name.js │ │ └── position.js │ │ ├── semi.js │ │ ├── set.js │ │ ├── settings.js │ │ ├── sleep.js │ │ ├── throw.js │ │ ├── ticket │ │ ├── author.js │ │ ├── channel.js │ │ ├── middleware.js │ │ └── reason.js │ │ ├── upper.js │ │ ├── user │ │ ├── addrole.js │ │ ├── avatarURL.js │ │ ├── bot.js │ │ ├── color.js │ │ ├── createdAt.js │ │ ├── discriminator.js │ │ ├── id.js │ │ ├── joinedAt.js │ │ ├── level.js │ │ ├── levelXP.js │ │ ├── mention.js │ │ ├── middleware.js │ │ ├── nextLevel.js │ │ ├── nextLevelXP.js │ │ ├── nickname.js │ │ ├── random.js │ │ ├── remainingXP.js │ │ ├── removerole.js │ │ ├── roles.js │ │ ├── send.js │ │ ├── tag.js │ │ └── username.js │ │ └── utils │ │ ├── calcLevel.js │ │ ├── calcLevelXP.js │ │ ├── calcNextLevel.js │ │ ├── calcNextLevelXP.js │ │ ├── calcRemainingXP.js │ │ ├── capitalize.js │ │ ├── includes.js │ │ ├── isSnowflake.js │ │ ├── isUrl.js │ │ ├── prettyMs.js │ │ └── time.js └── util.js ├── test ├── .eslintrc.json └── commands.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .vscode 4 | .env 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.jsx 2 | *.js -------------------------------------------------------------------------------- /Atlas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/Atlas.js -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README-OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/README-OLD.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/index.js -------------------------------------------------------------------------------- /lavalink.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/lavalink.env -------------------------------------------------------------------------------- /locales/source/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/source/commands.json -------------------------------------------------------------------------------- /locales/source/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/source/general.json -------------------------------------------------------------------------------- /locales/source/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/source/info.json -------------------------------------------------------------------------------- /locales/translated/ar-SA/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ar-SA/commands.json -------------------------------------------------------------------------------- /locales/translated/ar-SA/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ar-SA/general.json -------------------------------------------------------------------------------- /locales/translated/ar-SA/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ar-SA/info.json -------------------------------------------------------------------------------- /locales/translated/cs-CZ/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/cs-CZ/commands.json -------------------------------------------------------------------------------- /locales/translated/cs-CZ/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/cs-CZ/general.json -------------------------------------------------------------------------------- /locales/translated/cs-CZ/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/cs-CZ/info.json -------------------------------------------------------------------------------- /locales/translated/de-DE/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/de-DE/commands.json -------------------------------------------------------------------------------- /locales/translated/de-DE/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/de-DE/general.json -------------------------------------------------------------------------------- /locales/translated/de-DE/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/de-DE/info.json -------------------------------------------------------------------------------- /locales/translated/el-GR/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/el-GR/commands.json -------------------------------------------------------------------------------- /locales/translated/el-GR/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/el-GR/general.json -------------------------------------------------------------------------------- /locales/translated/el-GR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/el-GR/info.json -------------------------------------------------------------------------------- /locales/translated/en-PT/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/en-PT/commands.json -------------------------------------------------------------------------------- /locales/translated/en-PT/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/en-PT/general.json -------------------------------------------------------------------------------- /locales/translated/en-PT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/en-PT/info.json -------------------------------------------------------------------------------- /locales/translated/es-ES/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/es-ES/commands.json -------------------------------------------------------------------------------- /locales/translated/es-ES/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/es-ES/general.json -------------------------------------------------------------------------------- /locales/translated/es-ES/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/es-ES/info.json -------------------------------------------------------------------------------- /locales/translated/fi-FI/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fi-FI/commands.json -------------------------------------------------------------------------------- /locales/translated/fi-FI/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fi-FI/general.json -------------------------------------------------------------------------------- /locales/translated/fi-FI/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fi-FI/info.json -------------------------------------------------------------------------------- /locales/translated/fil-PH/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fil-PH/commands.json -------------------------------------------------------------------------------- /locales/translated/fil-PH/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fil-PH/general.json -------------------------------------------------------------------------------- /locales/translated/fil-PH/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fil-PH/info.json -------------------------------------------------------------------------------- /locales/translated/fr-FR/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fr-FR/commands.json -------------------------------------------------------------------------------- /locales/translated/fr-FR/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fr-FR/general.json -------------------------------------------------------------------------------- /locales/translated/fr-FR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/fr-FR/info.json -------------------------------------------------------------------------------- /locales/translated/he-IL/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/he-IL/commands.json -------------------------------------------------------------------------------- /locales/translated/he-IL/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/he-IL/general.json -------------------------------------------------------------------------------- /locales/translated/he-IL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/he-IL/info.json -------------------------------------------------------------------------------- /locales/translated/id-ID/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/id-ID/commands.json -------------------------------------------------------------------------------- /locales/translated/id-ID/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/id-ID/general.json -------------------------------------------------------------------------------- /locales/translated/id-ID/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/id-ID/info.json -------------------------------------------------------------------------------- /locales/translated/it-IT/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/it-IT/commands.json -------------------------------------------------------------------------------- /locales/translated/it-IT/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/it-IT/general.json -------------------------------------------------------------------------------- /locales/translated/it-IT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/it-IT/info.json -------------------------------------------------------------------------------- /locales/translated/ja-JP/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ja-JP/commands.json -------------------------------------------------------------------------------- /locales/translated/ja-JP/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ja-JP/general.json -------------------------------------------------------------------------------- /locales/translated/ja-JP/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ja-JP/info.json -------------------------------------------------------------------------------- /locales/translated/ko-KR/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ko-KR/commands.json -------------------------------------------------------------------------------- /locales/translated/ko-KR/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ko-KR/general.json -------------------------------------------------------------------------------- /locales/translated/ko-KR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ko-KR/info.json -------------------------------------------------------------------------------- /locales/translated/nl-NL/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/nl-NL/commands.json -------------------------------------------------------------------------------- /locales/translated/nl-NL/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/nl-NL/general.json -------------------------------------------------------------------------------- /locales/translated/nl-NL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/nl-NL/info.json -------------------------------------------------------------------------------- /locales/translated/no-NO/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/no-NO/commands.json -------------------------------------------------------------------------------- /locales/translated/no-NO/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/no-NO/general.json -------------------------------------------------------------------------------- /locales/translated/no-NO/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/no-NO/info.json -------------------------------------------------------------------------------- /locales/translated/pl-PL/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pl-PL/commands.json -------------------------------------------------------------------------------- /locales/translated/pl-PL/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pl-PL/general.json -------------------------------------------------------------------------------- /locales/translated/pl-PL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pl-PL/info.json -------------------------------------------------------------------------------- /locales/translated/pt-BR/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pt-BR/commands.json -------------------------------------------------------------------------------- /locales/translated/pt-BR/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pt-BR/general.json -------------------------------------------------------------------------------- /locales/translated/pt-BR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pt-BR/info.json -------------------------------------------------------------------------------- /locales/translated/pt-PT/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pt-PT/commands.json -------------------------------------------------------------------------------- /locales/translated/pt-PT/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pt-PT/general.json -------------------------------------------------------------------------------- /locales/translated/pt-PT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/pt-PT/info.json -------------------------------------------------------------------------------- /locales/translated/ru-RU/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ru-RU/commands.json -------------------------------------------------------------------------------- /locales/translated/ru-RU/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ru-RU/general.json -------------------------------------------------------------------------------- /locales/translated/ru-RU/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/ru-RU/info.json -------------------------------------------------------------------------------- /locales/translated/sv-SE/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/sv-SE/commands.json -------------------------------------------------------------------------------- /locales/translated/sv-SE/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/sv-SE/general.json -------------------------------------------------------------------------------- /locales/translated/sv-SE/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/sv-SE/info.json -------------------------------------------------------------------------------- /locales/translated/tr-TR/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/tr-TR/commands.json -------------------------------------------------------------------------------- /locales/translated/tr-TR/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/tr-TR/general.json -------------------------------------------------------------------------------- /locales/translated/tr-TR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/tr-TR/info.json -------------------------------------------------------------------------------- /locales/translated/vi-VN/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/vi-VN/commands.json -------------------------------------------------------------------------------- /locales/translated/vi-VN/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/vi-VN/general.json -------------------------------------------------------------------------------- /locales/translated/vi-VN/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/vi-VN/info.json -------------------------------------------------------------------------------- /locales/translated/zh-CN/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/zh-CN/commands.json -------------------------------------------------------------------------------- /locales/translated/zh-CN/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/zh-CN/general.json -------------------------------------------------------------------------------- /locales/translated/zh-CN/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/locales/translated/zh-CN/info.json -------------------------------------------------------------------------------- /mongo.env: -------------------------------------------------------------------------------- 1 | MONGO_LOG_DIR=/dev/null 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/package.json -------------------------------------------------------------------------------- /src/actionsInterval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/actionsInterval.js -------------------------------------------------------------------------------- /src/addons/Guild/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Guild/client.js -------------------------------------------------------------------------------- /src/addons/Guild/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Guild/me.js -------------------------------------------------------------------------------- /src/addons/Member/bannable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Member/bannable.js -------------------------------------------------------------------------------- /src/addons/Member/highestRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Member/highestRole.js -------------------------------------------------------------------------------- /src/addons/Member/kickable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Member/kickable.js -------------------------------------------------------------------------------- /src/addons/Member/punishable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Member/punishable.js -------------------------------------------------------------------------------- /src/addons/Member/roleObjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Member/roleObjects.js -------------------------------------------------------------------------------- /src/addons/Member/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Member/tag.js -------------------------------------------------------------------------------- /src/addons/Message/guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Message/guild.js -------------------------------------------------------------------------------- /src/addons/Permission/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Permission/has.js -------------------------------------------------------------------------------- /src/addons/Role/higherThan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/Role/higherThan.js -------------------------------------------------------------------------------- /src/addons/User/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/User/tag.js -------------------------------------------------------------------------------- /src/addons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/addons/index.js -------------------------------------------------------------------------------- /src/agenda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/agenda.js -------------------------------------------------------------------------------- /src/autoscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/autoscale.js -------------------------------------------------------------------------------- /src/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/cache.js -------------------------------------------------------------------------------- /src/commands/Configuration/filters/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/filters/action.js -------------------------------------------------------------------------------- /src/commands/Configuration/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/filters/index.js -------------------------------------------------------------------------------- /src/commands/Configuration/filters/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/filters/list.js -------------------------------------------------------------------------------- /src/commands/Configuration/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/locale.js -------------------------------------------------------------------------------- /src/commands/Configuration/log/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/log/actions.js -------------------------------------------------------------------------------- /src/commands/Configuration/log/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/log/errors.js -------------------------------------------------------------------------------- /src/commands/Configuration/log/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/log/index.js -------------------------------------------------------------------------------- /src/commands/Configuration/log/moderation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/log/moderation.js -------------------------------------------------------------------------------- /src/commands/Configuration/togglecommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/togglecommand.js -------------------------------------------------------------------------------- /src/commands/Configuration/toggleplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Configuration/toggleplugin.js -------------------------------------------------------------------------------- /src/commands/Fun/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/8ball.js -------------------------------------------------------------------------------- /src/commands/Fun/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/achievement.js -------------------------------------------------------------------------------- /src/commands/Fun/advice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/advice.js -------------------------------------------------------------------------------- /src/commands/Fun/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/captcha.js -------------------------------------------------------------------------------- /src/commands/Fun/cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/cat.js -------------------------------------------------------------------------------- /src/commands/Fun/catfact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/catfact.js -------------------------------------------------------------------------------- /src/commands/Fun/chucknorris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/chucknorris.js -------------------------------------------------------------------------------- /src/commands/Fun/coinflip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/coinflip.js -------------------------------------------------------------------------------- /src/commands/Fun/cowboy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/cowboy.js -------------------------------------------------------------------------------- /src/commands/Fun/dadjoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/dadjoke.js -------------------------------------------------------------------------------- /src/commands/Fun/discrim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/discrim.js -------------------------------------------------------------------------------- /src/commands/Fun/dog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/dog.js -------------------------------------------------------------------------------- /src/commands/Fun/emojify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/emojify.js -------------------------------------------------------------------------------- /src/commands/Fun/fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/fact.js -------------------------------------------------------------------------------- /src/commands/Fun/genavatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/genavatar.js -------------------------------------------------------------------------------- /src/commands/Fun/gotcharacter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/gotcharacter.js -------------------------------------------------------------------------------- /src/commands/Fun/gothouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/gothouse.js -------------------------------------------------------------------------------- /src/commands/Fun/lmgtfy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/lmgtfy.js -------------------------------------------------------------------------------- /src/commands/Fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/meme.js -------------------------------------------------------------------------------- /src/commands/Fun/neat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/neat.js -------------------------------------------------------------------------------- /src/commands/Fun/needsmorejpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/needsmorejpeg.js -------------------------------------------------------------------------------- /src/commands/Fun/randomcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/randomcase.js -------------------------------------------------------------------------------- /src/commands/Fun/randomurban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/randomurban.js -------------------------------------------------------------------------------- /src/commands/Fun/ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/ship.js -------------------------------------------------------------------------------- /src/commands/Fun/smalltext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/smalltext.js -------------------------------------------------------------------------------- /src/commands/Fun/starterpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/starterpack.js -------------------------------------------------------------------------------- /src/commands/Fun/texttoemoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/texttoemoji.js -------------------------------------------------------------------------------- /src/commands/Fun/trumpgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/trumpgen.js -------------------------------------------------------------------------------- /src/commands/Fun/urban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/urban.js -------------------------------------------------------------------------------- /src/commands/Fun/vaporwave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/vaporwave.js -------------------------------------------------------------------------------- /src/commands/Fun/wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/wiki.js -------------------------------------------------------------------------------- /src/commands/Fun/wouldyourather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/wouldyourather.js -------------------------------------------------------------------------------- /src/commands/Fun/xkcd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/xkcd.js -------------------------------------------------------------------------------- /src/commands/Fun/yesno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Fun/yesno.js -------------------------------------------------------------------------------- /src/commands/Info/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/dashboard.js -------------------------------------------------------------------------------- /src/commands/Info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/help.js -------------------------------------------------------------------------------- /src/commands/Info/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/info.js -------------------------------------------------------------------------------- /src/commands/Info/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/invite.js -------------------------------------------------------------------------------- /src/commands/Info/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/nodes.js -------------------------------------------------------------------------------- /src/commands/Info/patreon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/patreon.js -------------------------------------------------------------------------------- /src/commands/Info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/ping.js -------------------------------------------------------------------------------- /src/commands/Info/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/support.js -------------------------------------------------------------------------------- /src/commands/Info/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/uptime.js -------------------------------------------------------------------------------- /src/commands/Info/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Info/version.js -------------------------------------------------------------------------------- /src/commands/Levels/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Levels/leaderboard.js -------------------------------------------------------------------------------- /src/commands/Levels/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Levels/level.js -------------------------------------------------------------------------------- /src/commands/Moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/ban.js -------------------------------------------------------------------------------- /src/commands/Moderation/funban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/funban.js -------------------------------------------------------------------------------- /src/commands/Moderation/inviteinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/inviteinfo.js -------------------------------------------------------------------------------- /src/commands/Moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/kick.js -------------------------------------------------------------------------------- /src/commands/Moderation/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/move.js -------------------------------------------------------------------------------- /src/commands/Moderation/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/mute.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/any.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/endswith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/endswith.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/files.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/images.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/includes.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/index.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/invites.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/links.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/not.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/startswith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/startswith.js -------------------------------------------------------------------------------- /src/commands/Moderation/purge/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purge/user.js -------------------------------------------------------------------------------- /src/commands/Moderation/purgeban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/purgeban.js -------------------------------------------------------------------------------- /src/commands/Moderation/setlevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/setlevel.js -------------------------------------------------------------------------------- /src/commands/Moderation/slowmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/slowmode.js -------------------------------------------------------------------------------- /src/commands/Moderation/togglementionable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/togglementionable.js -------------------------------------------------------------------------------- /src/commands/Moderation/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/unban.js -------------------------------------------------------------------------------- /src/commands/Moderation/unmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/unmute.js -------------------------------------------------------------------------------- /src/commands/Moderation/warn/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/warn/add.js -------------------------------------------------------------------------------- /src/commands/Moderation/warn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/warn/index.js -------------------------------------------------------------------------------- /src/commands/Moderation/warn/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/warn/remove.js -------------------------------------------------------------------------------- /src/commands/Moderation/warn/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/warn/view.js -------------------------------------------------------------------------------- /src/commands/Moderation/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Moderation/warnings.js -------------------------------------------------------------------------------- /src/commands/Music/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/autoplay.js -------------------------------------------------------------------------------- /src/commands/Music/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/join.js -------------------------------------------------------------------------------- /src/commands/Music/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/leave.js -------------------------------------------------------------------------------- /src/commands/Music/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/next.js -------------------------------------------------------------------------------- /src/commands/Music/nowplaying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/nowplaying.js -------------------------------------------------------------------------------- /src/commands/Music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/pause.js -------------------------------------------------------------------------------- /src/commands/Music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/play.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/addqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/addqueue.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/create.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/delete.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/index.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/list.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/play.js -------------------------------------------------------------------------------- /src/commands/Music/playlist/removetrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/playlist/removetrack.js -------------------------------------------------------------------------------- /src/commands/Music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/queue.js -------------------------------------------------------------------------------- /src/commands/Music/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/remove.js -------------------------------------------------------------------------------- /src/commands/Music/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/repeat.js -------------------------------------------------------------------------------- /src/commands/Music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/resume.js -------------------------------------------------------------------------------- /src/commands/Music/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/seek.js -------------------------------------------------------------------------------- /src/commands/Music/shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/shift.js -------------------------------------------------------------------------------- /src/commands/Music/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/shuffle.js -------------------------------------------------------------------------------- /src/commands/Music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/stop.js -------------------------------------------------------------------------------- /src/commands/Music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Music/volume.js -------------------------------------------------------------------------------- /src/commands/Roles/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Roles/iam.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/add.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/close.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/create.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/index.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/remove.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/suffix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/suffix.js -------------------------------------------------------------------------------- /src/commands/Tickets/ticket/transcript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Tickets/ticket/transcript.js -------------------------------------------------------------------------------- /src/commands/Utilities/advancedembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/advancedembed.js -------------------------------------------------------------------------------- /src/commands/Utilities/avatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/avatar/index.js -------------------------------------------------------------------------------- /src/commands/Utilities/avatar/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/avatar/server.js -------------------------------------------------------------------------------- /src/commands/Utilities/avatar/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/avatar/user.js -------------------------------------------------------------------------------- /src/commands/Utilities/botinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/botinfo.js -------------------------------------------------------------------------------- /src/commands/Utilities/channelinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/channelinfo.js -------------------------------------------------------------------------------- /src/commands/Utilities/channelspaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/channelspaces.js -------------------------------------------------------------------------------- /src/commands/Utilities/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/convert.js -------------------------------------------------------------------------------- /src/commands/Utilities/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/embed.js -------------------------------------------------------------------------------- /src/commands/Utilities/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/eval.js -------------------------------------------------------------------------------- /src/commands/Utilities/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/google.js -------------------------------------------------------------------------------- /src/commands/Utilities/haveibeenpwned.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/haveibeenpwned.js -------------------------------------------------------------------------------- /src/commands/Utilities/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/id.js -------------------------------------------------------------------------------- /src/commands/Utilities/inrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/inrole.js -------------------------------------------------------------------------------- /src/commands/Utilities/isspass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/isspass.js -------------------------------------------------------------------------------- /src/commands/Utilities/joined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/joined.js -------------------------------------------------------------------------------- /src/commands/Utilities/membercount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/membercount.js -------------------------------------------------------------------------------- /src/commands/Utilities/minecraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/minecraft.js -------------------------------------------------------------------------------- /src/commands/Utilities/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/movie.js -------------------------------------------------------------------------------- /src/commands/Utilities/quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/quote.js -------------------------------------------------------------------------------- /src/commands/Utilities/randomcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/randomcolor.js -------------------------------------------------------------------------------- /src/commands/Utilities/reddit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/reddit.js -------------------------------------------------------------------------------- /src/commands/Utilities/remindme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/remindme.js -------------------------------------------------------------------------------- /src/commands/Utilities/resolveid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/resolveid.js -------------------------------------------------------------------------------- /src/commands/Utilities/roleinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/roleinfo.js -------------------------------------------------------------------------------- /src/commands/Utilities/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/say.js -------------------------------------------------------------------------------- /src/commands/Utilities/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/serverinfo.js -------------------------------------------------------------------------------- /src/commands/Utilities/shorten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/shorten.js -------------------------------------------------------------------------------- /src/commands/Utilities/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/show.js -------------------------------------------------------------------------------- /src/commands/Utilities/someone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/someone.js -------------------------------------------------------------------------------- /src/commands/Utilities/spacex/dragons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/spacex/dragons.js -------------------------------------------------------------------------------- /src/commands/Utilities/spacex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/spacex/index.js -------------------------------------------------------------------------------- /src/commands/Utilities/spacex/launches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/spacex/launches.js -------------------------------------------------------------------------------- /src/commands/Utilities/spacex/rockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/spacex/rockets.js -------------------------------------------------------------------------------- /src/commands/Utilities/spacex/ships.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/spacex/ships.js -------------------------------------------------------------------------------- /src/commands/Utilities/tageval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/tageval.js -------------------------------------------------------------------------------- /src/commands/Utilities/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/time.js -------------------------------------------------------------------------------- /src/commands/Utilities/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/weather.js -------------------------------------------------------------------------------- /src/commands/Utilities/whois.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/Utilities/whois.js -------------------------------------------------------------------------------- /src/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/commands/index.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/data/currencyCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/currencyCodes.json -------------------------------------------------------------------------------- /src/data/discordCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/discordCodes.json -------------------------------------------------------------------------------- /src/data/emojiLocales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/emojiLocales.js -------------------------------------------------------------------------------- /src/data/facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/facts.json -------------------------------------------------------------------------------- /src/data/gameOfThrones/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/gameOfThrones/books.json -------------------------------------------------------------------------------- /src/data/gameOfThrones/characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/gameOfThrones/characters.json -------------------------------------------------------------------------------- /src/data/gameOfThrones/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/gameOfThrones/houses.json -------------------------------------------------------------------------------- /src/data/languagemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/languagemap.json -------------------------------------------------------------------------------- /src/data/trump/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/data/trump/quotes.json -------------------------------------------------------------------------------- /src/events/channelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/channelCreate.js -------------------------------------------------------------------------------- /src/events/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/channelDelete.js -------------------------------------------------------------------------------- /src/events/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/debug.js -------------------------------------------------------------------------------- /src/events/guildBanAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildBanAdd.js -------------------------------------------------------------------------------- /src/events/guildBanRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildBanRemove.js -------------------------------------------------------------------------------- /src/events/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildCreate.js -------------------------------------------------------------------------------- /src/events/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildDelete.js -------------------------------------------------------------------------------- /src/events/guildEmojisUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildEmojisUpdate.js -------------------------------------------------------------------------------- /src/events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildMemberRemove.js -------------------------------------------------------------------------------- /src/events/guildMemberUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildMemberUpdate.js -------------------------------------------------------------------------------- /src/events/guildRoleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildRoleCreate.js -------------------------------------------------------------------------------- /src/events/guildRoleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildRoleDelete.js -------------------------------------------------------------------------------- /src/events/guildRoleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildRoleUpdate.js -------------------------------------------------------------------------------- /src/events/guildUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/guildUpdate.js -------------------------------------------------------------------------------- /src/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/messageCreate.js -------------------------------------------------------------------------------- /src/events/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/messageDelete.js -------------------------------------------------------------------------------- /src/events/messageReactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/messageReactionAdd.js -------------------------------------------------------------------------------- /src/events/messageReactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/messageReactionRemove.js -------------------------------------------------------------------------------- /src/events/messageUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/messageUpdate.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/ready.js -------------------------------------------------------------------------------- /src/events/voiceChannelLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/voiceChannelLeave.js -------------------------------------------------------------------------------- /src/events/voiceChannelSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/events/voiceChannelSwitch.js -------------------------------------------------------------------------------- /src/filters/capitalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/capitalization.js -------------------------------------------------------------------------------- /src/filters/cursing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/cursing.js -------------------------------------------------------------------------------- /src/filters/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/emoji.js -------------------------------------------------------------------------------- /src/filters/invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/invites.js -------------------------------------------------------------------------------- /src/filters/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/links.js -------------------------------------------------------------------------------- /src/filters/mentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/mentions.js -------------------------------------------------------------------------------- /src/filters/phrases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/phrases.js -------------------------------------------------------------------------------- /src/filters/spam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/filters/spam.js -------------------------------------------------------------------------------- /src/schemas/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/schemas/embed.js -------------------------------------------------------------------------------- /src/schemas/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/schemas/mute.js -------------------------------------------------------------------------------- /src/schemas/reminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/schemas/reminder.js -------------------------------------------------------------------------------- /src/structures/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Action.js -------------------------------------------------------------------------------- /src/structures/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Command.js -------------------------------------------------------------------------------- /src/structures/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Database.js -------------------------------------------------------------------------------- /src/structures/EmojiCollector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/EmojiCollector.js -------------------------------------------------------------------------------- /src/structures/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Filter.js -------------------------------------------------------------------------------- /src/structures/MessageCollector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/MessageCollector.js -------------------------------------------------------------------------------- /src/structures/Paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Paginator.js -------------------------------------------------------------------------------- /src/structures/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Player.js -------------------------------------------------------------------------------- /src/structures/PlayerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/PlayerManager.js -------------------------------------------------------------------------------- /src/structures/PlayerResponder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/PlayerResponder.js -------------------------------------------------------------------------------- /src/structures/Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Plugin.js -------------------------------------------------------------------------------- /src/structures/Responder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Responder.js -------------------------------------------------------------------------------- /src/structures/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Settings.js -------------------------------------------------------------------------------- /src/structures/Spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/Spotify.js -------------------------------------------------------------------------------- /src/structures/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/User.js -------------------------------------------------------------------------------- /src/structures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/structures/index.js -------------------------------------------------------------------------------- /src/tagengine/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/Parser.js -------------------------------------------------------------------------------- /src/tagengine/TagError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/TagError.js -------------------------------------------------------------------------------- /src/tagengine/Token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/Token.js -------------------------------------------------------------------------------- /src/tagengine/commandTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/commandTag.js -------------------------------------------------------------------------------- /src/tagengine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/index.js -------------------------------------------------------------------------------- /src/tagengine/interpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/interpreter.js -------------------------------------------------------------------------------- /src/tagengine/lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/lexer.js -------------------------------------------------------------------------------- /src/tagengine/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/loader.js -------------------------------------------------------------------------------- /src/tagengine/tags/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/and.js -------------------------------------------------------------------------------- /src/tagengine/tags/args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/args.js -------------------------------------------------------------------------------- /src/tagengine/tags/catch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/catch.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/awaitmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/awaitmessage.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/createdAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/createdAt.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/id.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/lastMessageID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/lastMessageID.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/mention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/mention.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/middleware.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/name.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/nsfw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/nsfw.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/send.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/topic.js -------------------------------------------------------------------------------- /src/tagengine/tags/channel/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/channel/type.js -------------------------------------------------------------------------------- /src/tagengine/tags/choose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/choose.js -------------------------------------------------------------------------------- /src/tagengine/tags/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/delete.js -------------------------------------------------------------------------------- /src/tagengine/tags/emoji/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/emoji/category.js -------------------------------------------------------------------------------- /src/tagengine/tags/emoji/char.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/emoji/char.js -------------------------------------------------------------------------------- /src/tagengine/tags/emoji/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/emoji/middleware.js -------------------------------------------------------------------------------- /src/tagengine/tags/emoji/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/emoji/name.js -------------------------------------------------------------------------------- /src/tagengine/tags/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/find.js -------------------------------------------------------------------------------- /src/tagengine/tags/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/get.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/channelCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/channelCount.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/createdAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/createdAt.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/defaultNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/defaultNotifications.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/icon.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/iconURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/iconURL.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/id.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/memberCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/memberCount.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/name.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/ownerID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/ownerID.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/prefix.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/region.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/roleCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/roleCount.js -------------------------------------------------------------------------------- /src/tagengine/tags/guild/shard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/guild/shard.js -------------------------------------------------------------------------------- /src/tagengine/tags/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/if.js -------------------------------------------------------------------------------- /src/tagengine/tags/l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/l.js -------------------------------------------------------------------------------- /src/tagengine/tags/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/length.js -------------------------------------------------------------------------------- /src/tagengine/tags/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/log.js -------------------------------------------------------------------------------- /src/tagengine/tags/lower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/lower.js -------------------------------------------------------------------------------- /src/tagengine/tags/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/math.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/author.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/channelID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/channelID.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/cleanContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/cleanContent.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/content.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/delete.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/hasEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/hasEmbed.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/id.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/label.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/middleware.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/pinned.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/pinned.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/react.js -------------------------------------------------------------------------------- /src/tagengine/tags/message/tts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/message/tts.js -------------------------------------------------------------------------------- /src/tagengine/tags/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/note.js -------------------------------------------------------------------------------- /src/tagengine/tags/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/or.js -------------------------------------------------------------------------------- /src/tagengine/tags/perget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/perget.js -------------------------------------------------------------------------------- /src/tagengine/tags/perset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/perset.js -------------------------------------------------------------------------------- /src/tagengine/tags/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/r.js -------------------------------------------------------------------------------- /src/tagengine/tags/randstr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/randstr.js -------------------------------------------------------------------------------- /src/tagengine/tags/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/range.js -------------------------------------------------------------------------------- /src/tagengine/tags/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/replace.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/color.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/createdAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/createdAt.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/hoist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/hoist.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/id.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/managed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/managed.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/memberCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/memberCount.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/mention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/mention.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/mentionable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/mentionable.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/middleware.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/name.js -------------------------------------------------------------------------------- /src/tagengine/tags/role/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/role/position.js -------------------------------------------------------------------------------- /src/tagengine/tags/semi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/semi.js -------------------------------------------------------------------------------- /src/tagengine/tags/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/set.js -------------------------------------------------------------------------------- /src/tagengine/tags/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/settings.js -------------------------------------------------------------------------------- /src/tagengine/tags/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/sleep.js -------------------------------------------------------------------------------- /src/tagengine/tags/throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/throw.js -------------------------------------------------------------------------------- /src/tagengine/tags/ticket/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/ticket/author.js -------------------------------------------------------------------------------- /src/tagengine/tags/ticket/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/ticket/channel.js -------------------------------------------------------------------------------- /src/tagengine/tags/ticket/middleware.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tagengine/tags/ticket/reason.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/ticket/reason.js -------------------------------------------------------------------------------- /src/tagengine/tags/upper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/upper.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/addrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/addrole.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/avatarURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/avatarURL.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/bot.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/color.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/createdAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/createdAt.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/discriminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/discriminator.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/id.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/joinedAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/joinedAt.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/level.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/levelXP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/levelXP.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/mention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/mention.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/middleware.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/nextLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/nextLevel.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/nextLevelXP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/nextLevelXP.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/nickname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/nickname.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/random.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/remainingXP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/remainingXP.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/removerole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/removerole.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/roles.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/send.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/tag.js -------------------------------------------------------------------------------- /src/tagengine/tags/user/username.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/user/username.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/calcLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/calcLevel.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/calcLevelXP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/calcLevelXP.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/calcNextLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/calcNextLevel.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/calcNextLevelXP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/calcNextLevelXP.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/calcRemainingXP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/calcRemainingXP.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/capitalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/capitalize.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/includes.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/isSnowflake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/isSnowflake.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/isUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/isUrl.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/prettyMs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/prettyMs.js -------------------------------------------------------------------------------- /src/tagengine/tags/utils/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/tagengine/tags/utils/time.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/src/util.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/test/commands.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlasbot/bot/HEAD/yarn.lock --------------------------------------------------------------------------------