├── .github └── FUNDING.yml ├── .gitignore ├── Launch.bat ├── README.md ├── config └── config.json ├── package.json └── src ├── index.js └── presser.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /Launch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/Launch.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/config/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/src/index.js -------------------------------------------------------------------------------- /src/presser.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17teen/Discord-Presser-Server-Nuker/HEAD/src/presser.bat --------------------------------------------------------------------------------