├── .gitignore ├── Injectord └── Injectord.js ├── LICENSE ├── README.md ├── plugins ├── Creation Date │ ├── CreationDate.plugin.js │ ├── README.md │ ├── config.json │ └── plugin.js ├── Dev Assist │ ├── DevAssist.plugin.js │ └── README.md ├── Move Changelog │ ├── MoveChangelog.plugin.js │ └── README.md ├── Old │ ├── BD Utility 2 │ │ ├── BDUtility.plugin.js │ │ ├── README.md │ │ └── version.json │ ├── BD Utility │ │ ├── BDUtility.plugin.js │ │ ├── README.md │ │ └── jquery.getReact.js │ ├── Custom Emotes │ │ ├── CustomEmotes.plugin.js │ │ ├── CustomEmotesOld.plugin.js │ │ └── README.md │ ├── README.md │ └── SnU Modifier │ │ ├── README.md │ │ └── SnUModifier.plugin.js └── README.md └── themes └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Get completely rid of all JetBrain settings stuff 2 | .idea/ -------------------------------------------------------------------------------- /Injectord/Injectord.js: -------------------------------------------------------------------------------- 1 | class PluginModule { 2 | constructor() { 3 | // 4 | } 5 | } 6 | 7 | class ThemeModule { 8 | constructor() { 9 | // 10 | } 11 | } 12 | 13 | class PermissionModule { 14 | constructor() { 15 | // 16 | } 17 | } 18 | 19 | class EmoteMenuModule { 20 | constructor() { 21 | // 22 | } 23 | } 24 | 25 | class EmoteModule { 26 | constructor() { 27 | // 28 | } 29 | } 30 | 31 | class EmotePackModule { 32 | constructor() { 33 | // 34 | } 35 | } 36 | 37 | class Injectord { 38 | constructor() { 39 | // 40 | } 41 | } 42 | 43 | class Utility { 44 | constructor() { 45 | // 46 | } 47 | } 48 | 49 | // Discord's WebSocket Code is compiled, there is no way to access it. 50 | // Therefore Injectord injects the Webpack for Discord.js which allows for plugins to use self-bot for more connection data -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Natsulus 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Details Coming Soon -------------------------------------------------------------------------------- /plugins/Creation Date/CreationDate.plugin.js: -------------------------------------------------------------------------------- 1 | //META{"name":"CreationDate"}*// 2 | 3 | class CreationDate { 4 | start() { 5 | const script = $("