├── .gitignore ├── LICENSE ├── README.md ├── client.js ├── config.js ├── modules ├── games │ ├── agma.js │ ├── petridish.js │ ├── proto5.js │ └── proto6.js ├── proxyManager.js └── userModule.js ├── package.json ├── proxies.txt ├── server.js └── start ├── installMac.command ├── installUnix.sh ├── installWindows.bat ├── startMac.command ├── startUnix.sh └── startWindows.bat /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.cmd 3 | *.ps1 4 | node_modules 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/README.md -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/client.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/config.js -------------------------------------------------------------------------------- /modules/games/agma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/modules/games/agma.js -------------------------------------------------------------------------------- /modules/games/petridish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/modules/games/petridish.js -------------------------------------------------------------------------------- /modules/games/proto5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/modules/games/proto5.js -------------------------------------------------------------------------------- /modules/games/proto6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/modules/games/proto6.js -------------------------------------------------------------------------------- /modules/proxyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/modules/proxyManager.js -------------------------------------------------------------------------------- /modules/userModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/modules/userModule.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/package.json -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/proxies.txt -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaRealSh0T/Clone-Smasher/HEAD/server.js -------------------------------------------------------------------------------- /start/installMac.command: -------------------------------------------------------------------------------- 1 | npm i -------------------------------------------------------------------------------- /start/installUnix.sh: -------------------------------------------------------------------------------- 1 | npm i -------------------------------------------------------------------------------- /start/installWindows.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | npm i -------------------------------------------------------------------------------- /start/startMac.command: -------------------------------------------------------------------------------- 1 | cd .. 2 | node server.js -------------------------------------------------------------------------------- /start/startUnix.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | node server.js -------------------------------------------------------------------------------- /start/startWindows.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | node server.js 3 | pause --------------------------------------------------------------------------------