├── .dockerignore ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .gitmodules ├── .npmrc ├── Dockerfile ├── LICENSE.md ├── README.md ├── config ├── default.yaml ├── development.yaml └── production.yaml ├── gulpfile.js ├── package.json ├── pm2 └── dyno.bot.json ├── scripts ├── convertConfig.js ├── execAll.sh ├── loadActivity.js └── reshard.js ├── src ├── commands │ ├── Admin │ │ ├── Avatar.js │ │ ├── Changelog.js │ │ ├── CommandStats.js │ │ ├── Data.js │ │ ├── DisablePremium.js │ │ ├── EnablePremium.js │ │ ├── Eval.js │ │ ├── Exec.js │ │ ├── Git.js │ │ ├── GlobalDisable.js │ │ ├── GlobalEnable.js │ │ ├── Guild.js │ │ ├── ListingBlacklist.js │ │ ├── LoadCommand.js │ │ ├── LoadController.js │ │ ├── LoadIPC.js │ │ ├── LoadModule.js │ │ ├── MoveCluster.js │ │ ├── Partner.js │ │ ├── RLReset.js │ │ ├── RemoteDebug.js │ │ ├── RemoteDiagnose.js │ │ ├── Restart.js │ │ ├── Sessions.js │ │ ├── Speedtest.js │ │ ├── UnloadModule.js │ │ ├── Update.js │ │ ├── UpdateTeam.js │ │ └── Username.js │ ├── Info │ │ ├── Info.js │ │ ├── Ping.js │ │ ├── Premium.js │ │ ├── Stats.js │ │ └── Uptime.js │ ├── Misc │ │ ├── Avatar.js │ │ ├── Botlist.js │ │ ├── Color.js │ │ ├── Discrim.js │ │ ├── Distance.js │ │ ├── DynoAvatar.js │ │ ├── Emotes.js │ │ ├── InviteInfo.js │ │ ├── MemberCount.js │ │ ├── RandomColor.js │ │ ├── ServerInfo.js │ │ └── Whois.js │ └── Roles │ │ ├── RoleInfo.js │ │ └── Roles.js ├── core │ ├── Dyno.js │ ├── RPCClient.js │ ├── RPCServer.js │ ├── cluster │ │ ├── Cluster.js │ │ ├── Events.js │ │ ├── Logger.js │ │ ├── Manager.js │ │ ├── Server.js │ │ └── Sharding.js │ ├── clusterManager │ │ ├── Commands.js │ │ ├── Logger.js │ │ └── Manager.js │ ├── collections │ │ ├── CommandCollection.js │ │ ├── GuildCollection.js │ │ └── ModuleCollection.js │ ├── config.js │ ├── database.js │ ├── logger.js │ ├── managers │ │ ├── EventManager.js │ │ ├── IPCManager.js │ │ ├── LangManager.js │ │ ├── PagerManager.js │ │ ├── PermissionsManager.js │ │ ├── RPCManager.js │ │ └── WebhookManager.js │ ├── matomo.js │ ├── metrics.js │ ├── processManager │ │ ├── Manager.js │ │ └── Process.js │ ├── redis.js │ ├── rpc │ │ ├── Client.js │ │ ├── LogServer.js │ │ ├── Server.js │ │ └── index.js │ ├── statsd.js │ ├── transports │ │ └── winston-sentry.js │ └── utils │ │ └── Diagnostics.js ├── events │ ├── channelCreate.js │ ├── channelDelete.js │ ├── guildBanAdd.js │ ├── guildBanRemove.js │ ├── guildMemberAdd.js │ ├── guildMemberRemove.js │ ├── guildMemberUpdate.js │ ├── guildRoleCreate.js │ ├── guildRoleDelete.js │ ├── guildRoleUpdate.js │ ├── messageCreate.js │ ├── messageDelete.js │ ├── messageDeleteBulk.js │ ├── messageReactionAdd.js │ ├── messageReactionRemove.js │ ├── messageReactionRemoveAll.js │ ├── messageUpdate.js │ ├── voiceChannelJoin.js │ ├── voiceChannelLeave.js │ └── voiceChannelSwitch.js ├── index.d.ts ├── index.js ├── ipc │ ├── cfgset.js │ ├── disconnectShard.js │ ├── discrim.js │ ├── ping.js │ ├── shards.js │ ├── shared.js │ ├── stats.js │ └── unload.js ├── logo.txt ├── modules │ ├── AdminHandler.js │ ├── Carbon.js │ ├── CommandHandler.js │ ├── CoordsChannel.js │ ├── Dyno.js │ ├── DynoManager.js │ ├── Premium.js │ ├── ShardStatus.js │ ├── Starboard.js │ └── modules.js └── start.js └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | npm-debug.logs 4 | config/local* -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/README.md -------------------------------------------------------------------------------- /config/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/config/default.yaml -------------------------------------------------------------------------------- /config/development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/config/development.yaml -------------------------------------------------------------------------------- /config/production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/config/production.yaml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/package.json -------------------------------------------------------------------------------- /pm2/dyno.bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/pm2/dyno.bot.json -------------------------------------------------------------------------------- /scripts/convertConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/scripts/convertConfig.js -------------------------------------------------------------------------------- /scripts/execAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/scripts/execAll.sh -------------------------------------------------------------------------------- /scripts/loadActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/scripts/loadActivity.js -------------------------------------------------------------------------------- /scripts/reshard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/scripts/reshard.js -------------------------------------------------------------------------------- /src/commands/Admin/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Avatar.js -------------------------------------------------------------------------------- /src/commands/Admin/Changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Changelog.js -------------------------------------------------------------------------------- /src/commands/Admin/CommandStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/CommandStats.js -------------------------------------------------------------------------------- /src/commands/Admin/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Data.js -------------------------------------------------------------------------------- /src/commands/Admin/DisablePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/DisablePremium.js -------------------------------------------------------------------------------- /src/commands/Admin/EnablePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/EnablePremium.js -------------------------------------------------------------------------------- /src/commands/Admin/Eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Eval.js -------------------------------------------------------------------------------- /src/commands/Admin/Exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Exec.js -------------------------------------------------------------------------------- /src/commands/Admin/Git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Git.js -------------------------------------------------------------------------------- /src/commands/Admin/GlobalDisable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/GlobalDisable.js -------------------------------------------------------------------------------- /src/commands/Admin/GlobalEnable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/GlobalEnable.js -------------------------------------------------------------------------------- /src/commands/Admin/Guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Guild.js -------------------------------------------------------------------------------- /src/commands/Admin/ListingBlacklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/ListingBlacklist.js -------------------------------------------------------------------------------- /src/commands/Admin/LoadCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/LoadCommand.js -------------------------------------------------------------------------------- /src/commands/Admin/LoadController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/LoadController.js -------------------------------------------------------------------------------- /src/commands/Admin/LoadIPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/LoadIPC.js -------------------------------------------------------------------------------- /src/commands/Admin/LoadModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/LoadModule.js -------------------------------------------------------------------------------- /src/commands/Admin/MoveCluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/MoveCluster.js -------------------------------------------------------------------------------- /src/commands/Admin/Partner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Partner.js -------------------------------------------------------------------------------- /src/commands/Admin/RLReset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/RLReset.js -------------------------------------------------------------------------------- /src/commands/Admin/RemoteDebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/RemoteDebug.js -------------------------------------------------------------------------------- /src/commands/Admin/RemoteDiagnose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/RemoteDiagnose.js -------------------------------------------------------------------------------- /src/commands/Admin/Restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Restart.js -------------------------------------------------------------------------------- /src/commands/Admin/Sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Sessions.js -------------------------------------------------------------------------------- /src/commands/Admin/Speedtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Speedtest.js -------------------------------------------------------------------------------- /src/commands/Admin/UnloadModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/UnloadModule.js -------------------------------------------------------------------------------- /src/commands/Admin/Update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Update.js -------------------------------------------------------------------------------- /src/commands/Admin/UpdateTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/UpdateTeam.js -------------------------------------------------------------------------------- /src/commands/Admin/Username.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Admin/Username.js -------------------------------------------------------------------------------- /src/commands/Info/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Info/Info.js -------------------------------------------------------------------------------- /src/commands/Info/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Info/Ping.js -------------------------------------------------------------------------------- /src/commands/Info/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Info/Premium.js -------------------------------------------------------------------------------- /src/commands/Info/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Info/Stats.js -------------------------------------------------------------------------------- /src/commands/Info/Uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Info/Uptime.js -------------------------------------------------------------------------------- /src/commands/Misc/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Avatar.js -------------------------------------------------------------------------------- /src/commands/Misc/Botlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Botlist.js -------------------------------------------------------------------------------- /src/commands/Misc/Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Color.js -------------------------------------------------------------------------------- /src/commands/Misc/Discrim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Discrim.js -------------------------------------------------------------------------------- /src/commands/Misc/Distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Distance.js -------------------------------------------------------------------------------- /src/commands/Misc/DynoAvatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/DynoAvatar.js -------------------------------------------------------------------------------- /src/commands/Misc/Emotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Emotes.js -------------------------------------------------------------------------------- /src/commands/Misc/InviteInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/InviteInfo.js -------------------------------------------------------------------------------- /src/commands/Misc/MemberCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/MemberCount.js -------------------------------------------------------------------------------- /src/commands/Misc/RandomColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/RandomColor.js -------------------------------------------------------------------------------- /src/commands/Misc/ServerInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/ServerInfo.js -------------------------------------------------------------------------------- /src/commands/Misc/Whois.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Misc/Whois.js -------------------------------------------------------------------------------- /src/commands/Roles/RoleInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Roles/RoleInfo.js -------------------------------------------------------------------------------- /src/commands/Roles/Roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/commands/Roles/Roles.js -------------------------------------------------------------------------------- /src/core/Dyno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/Dyno.js -------------------------------------------------------------------------------- /src/core/RPCClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/RPCClient.js -------------------------------------------------------------------------------- /src/core/RPCServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/RPCServer.js -------------------------------------------------------------------------------- /src/core/cluster/Cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/cluster/Cluster.js -------------------------------------------------------------------------------- /src/core/cluster/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/cluster/Events.js -------------------------------------------------------------------------------- /src/core/cluster/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/cluster/Logger.js -------------------------------------------------------------------------------- /src/core/cluster/Manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/cluster/Manager.js -------------------------------------------------------------------------------- /src/core/cluster/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/cluster/Server.js -------------------------------------------------------------------------------- /src/core/cluster/Sharding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/cluster/Sharding.js -------------------------------------------------------------------------------- /src/core/clusterManager/Commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/clusterManager/Commands.js -------------------------------------------------------------------------------- /src/core/clusterManager/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/clusterManager/Logger.js -------------------------------------------------------------------------------- /src/core/clusterManager/Manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/clusterManager/Manager.js -------------------------------------------------------------------------------- /src/core/collections/CommandCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/collections/CommandCollection.js -------------------------------------------------------------------------------- /src/core/collections/GuildCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/collections/GuildCollection.js -------------------------------------------------------------------------------- /src/core/collections/ModuleCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/collections/ModuleCollection.js -------------------------------------------------------------------------------- /src/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/config.js -------------------------------------------------------------------------------- /src/core/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/database.js -------------------------------------------------------------------------------- /src/core/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/logger.js -------------------------------------------------------------------------------- /src/core/managers/EventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/EventManager.js -------------------------------------------------------------------------------- /src/core/managers/IPCManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/IPCManager.js -------------------------------------------------------------------------------- /src/core/managers/LangManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/LangManager.js -------------------------------------------------------------------------------- /src/core/managers/PagerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/PagerManager.js -------------------------------------------------------------------------------- /src/core/managers/PermissionsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/PermissionsManager.js -------------------------------------------------------------------------------- /src/core/managers/RPCManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/RPCManager.js -------------------------------------------------------------------------------- /src/core/managers/WebhookManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/managers/WebhookManager.js -------------------------------------------------------------------------------- /src/core/matomo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/matomo.js -------------------------------------------------------------------------------- /src/core/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/metrics.js -------------------------------------------------------------------------------- /src/core/processManager/Manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/processManager/Manager.js -------------------------------------------------------------------------------- /src/core/processManager/Process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/processManager/Process.js -------------------------------------------------------------------------------- /src/core/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/redis.js -------------------------------------------------------------------------------- /src/core/rpc/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/rpc/Client.js -------------------------------------------------------------------------------- /src/core/rpc/LogServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/rpc/LogServer.js -------------------------------------------------------------------------------- /src/core/rpc/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/rpc/Server.js -------------------------------------------------------------------------------- /src/core/rpc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/rpc/index.js -------------------------------------------------------------------------------- /src/core/statsd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/statsd.js -------------------------------------------------------------------------------- /src/core/transports/winston-sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/transports/winston-sentry.js -------------------------------------------------------------------------------- /src/core/utils/Diagnostics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/core/utils/Diagnostics.js -------------------------------------------------------------------------------- /src/events/channelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/channelCreate.js -------------------------------------------------------------------------------- /src/events/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/channelDelete.js -------------------------------------------------------------------------------- /src/events/guildBanAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildBanAdd.js -------------------------------------------------------------------------------- /src/events/guildBanRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildBanRemove.js -------------------------------------------------------------------------------- /src/events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildMemberRemove.js -------------------------------------------------------------------------------- /src/events/guildMemberUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildMemberUpdate.js -------------------------------------------------------------------------------- /src/events/guildRoleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildRoleCreate.js -------------------------------------------------------------------------------- /src/events/guildRoleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildRoleDelete.js -------------------------------------------------------------------------------- /src/events/guildRoleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/guildRoleUpdate.js -------------------------------------------------------------------------------- /src/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageCreate.js -------------------------------------------------------------------------------- /src/events/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageDelete.js -------------------------------------------------------------------------------- /src/events/messageDeleteBulk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageDeleteBulk.js -------------------------------------------------------------------------------- /src/events/messageReactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageReactionAdd.js -------------------------------------------------------------------------------- /src/events/messageReactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageReactionRemove.js -------------------------------------------------------------------------------- /src/events/messageReactionRemoveAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageReactionRemoveAll.js -------------------------------------------------------------------------------- /src/events/messageUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/messageUpdate.js -------------------------------------------------------------------------------- /src/events/voiceChannelJoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/voiceChannelJoin.js -------------------------------------------------------------------------------- /src/events/voiceChannelLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/voiceChannelLeave.js -------------------------------------------------------------------------------- /src/events/voiceChannelSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/events/voiceChannelSwitch.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/index.js -------------------------------------------------------------------------------- /src/ipc/cfgset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/cfgset.js -------------------------------------------------------------------------------- /src/ipc/disconnectShard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/disconnectShard.js -------------------------------------------------------------------------------- /src/ipc/discrim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/discrim.js -------------------------------------------------------------------------------- /src/ipc/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/ping.js -------------------------------------------------------------------------------- /src/ipc/shards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/shards.js -------------------------------------------------------------------------------- /src/ipc/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/shared.js -------------------------------------------------------------------------------- /src/ipc/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/stats.js -------------------------------------------------------------------------------- /src/ipc/unload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/ipc/unload.js -------------------------------------------------------------------------------- /src/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/logo.txt -------------------------------------------------------------------------------- /src/modules/AdminHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/AdminHandler.js -------------------------------------------------------------------------------- /src/modules/Carbon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/Carbon.js -------------------------------------------------------------------------------- /src/modules/CommandHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/CommandHandler.js -------------------------------------------------------------------------------- /src/modules/CoordsChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/CoordsChannel.js -------------------------------------------------------------------------------- /src/modules/Dyno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/Dyno.js -------------------------------------------------------------------------------- /src/modules/DynoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/DynoManager.js -------------------------------------------------------------------------------- /src/modules/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/Premium.js -------------------------------------------------------------------------------- /src/modules/ShardStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/ShardStatus.js -------------------------------------------------------------------------------- /src/modules/Starboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/Starboard.js -------------------------------------------------------------------------------- /src/modules/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/modules/modules.js -------------------------------------------------------------------------------- /src/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/src/start.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aididan20/dyno/HEAD/tsconfig.json --------------------------------------------------------------------------------