├── LICENSE ├── README.md ├── Structures └── AntiAltClient.js ├── commands ├── AntiAlt │ ├── bypass-alt.js │ ├── config-alt.js │ └── fetch-alts.js └── info │ └── help.js ├── config.json └── index.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/README.md -------------------------------------------------------------------------------- /Structures/AntiAltClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/Structures/AntiAltClient.js -------------------------------------------------------------------------------- /commands/AntiAlt/bypass-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/commands/AntiAlt/bypass-alt.js -------------------------------------------------------------------------------- /commands/AntiAlt/config-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/commands/AntiAlt/config-alt.js -------------------------------------------------------------------------------- /commands/AntiAlt/fetch-alts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/commands/AntiAlt/fetch-alts.js -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "T0K3N.H3R3", 3 | "prefix": "!" 4 | } 5 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-alts/HEAD/index.js --------------------------------------------------------------------------------