├── README.md ├── embed ├── README.md ├── config.json ├── launch.bat └── main.py └── nonembed ├── README.md ├── config.json ├── launch.bat └── main.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/README.md -------------------------------------------------------------------------------- /embed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/embed/README.md -------------------------------------------------------------------------------- /embed/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/embed/config.json -------------------------------------------------------------------------------- /embed/launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Mass DM Friend List Bot (embed) 3 | py main.py 4 | pause 5 | -------------------------------------------------------------------------------- /embed/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/embed/main.py -------------------------------------------------------------------------------- /nonembed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/nonembed/README.md -------------------------------------------------------------------------------- /nonembed/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/nonembed/config.json -------------------------------------------------------------------------------- /nonembed/launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Mass DM Friend List Bot (nonembed) 3 | py main.py 4 | pause 5 | -------------------------------------------------------------------------------- /nonembed/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrT4S/Friends-Mass-DM-BOT/HEAD/nonembed/main.py --------------------------------------------------------------------------------