├── LICENSE ├── README.md ├── Structures └── legendJsClient.js ├── commands ├── AntiAlts │ └── fetch-alts.js ├── info │ └── help.js └── verification │ ├── bypass.js │ ├── config.js │ └── verify.js ├── config.js ├── dashboard ├── assets │ ├── css │ │ ├── 404.css │ │ ├── Styles.css │ │ ├── dashboard.css │ │ ├── message.css │ │ ├── settings.css │ │ └── verify.css │ ├── images │ │ └── EABCE74A-CCDB-4F59-B80D-454EA66C1D49.png │ └── js │ │ └── script.js ├── index.js └── templates │ ├── 404.ejs │ ├── dashboard.ejs │ ├── index.ejs │ ├── message.ejs │ ├── partials │ ├── Navbar.ejs │ ├── general.ejs │ └── truncate.ejs │ ├── settings.ejs │ └── verify.ejs ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/README.md -------------------------------------------------------------------------------- /Structures/legendJsClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/Structures/legendJsClient.js -------------------------------------------------------------------------------- /commands/AntiAlts/fetch-alts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/commands/AntiAlts/fetch-alts.js -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /commands/verification/bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/commands/verification/bypass.js -------------------------------------------------------------------------------- /commands/verification/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/commands/verification/config.js -------------------------------------------------------------------------------- /commands/verification/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/commands/verification/verify.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/config.js -------------------------------------------------------------------------------- /dashboard/assets/css/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/css/404.css -------------------------------------------------------------------------------- /dashboard/assets/css/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/css/Styles.css -------------------------------------------------------------------------------- /dashboard/assets/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/css/dashboard.css -------------------------------------------------------------------------------- /dashboard/assets/css/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/css/message.css -------------------------------------------------------------------------------- /dashboard/assets/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/css/settings.css -------------------------------------------------------------------------------- /dashboard/assets/css/verify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/css/verify.css -------------------------------------------------------------------------------- /dashboard/assets/images/EABCE74A-CCDB-4F59-B80D-454EA66C1D49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/images/EABCE74A-CCDB-4F59-B80D-454EA66C1D49.png -------------------------------------------------------------------------------- /dashboard/assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/assets/js/script.js -------------------------------------------------------------------------------- /dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/index.js -------------------------------------------------------------------------------- /dashboard/templates/404.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/404.ejs -------------------------------------------------------------------------------- /dashboard/templates/dashboard.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/dashboard.ejs -------------------------------------------------------------------------------- /dashboard/templates/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/index.ejs -------------------------------------------------------------------------------- /dashboard/templates/message.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/message.ejs -------------------------------------------------------------------------------- /dashboard/templates/partials/Navbar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/partials/Navbar.ejs -------------------------------------------------------------------------------- /dashboard/templates/partials/general.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/partials/general.ejs -------------------------------------------------------------------------------- /dashboard/templates/partials/truncate.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/partials/truncate.ejs -------------------------------------------------------------------------------- /dashboard/templates/settings.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/settings.ejs -------------------------------------------------------------------------------- /dashboard/templates/verify.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/dashboard/templates/verify.ejs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/verification-bot/HEAD/package.json --------------------------------------------------------------------------------