├── README.md ├── app.json ├── config.json ├── handler.js ├── index.js ├── lib ├── P ├── afk.js ├── client.js ├── func.js ├── greet.js ├── http-server.js ├── json │ ├── P │ ├── dataGc.json │ ├── dataUser.json │ └── vn.json ├── log.js ├── temp │ ├── P │ ├── close.webp │ ├── doge.jpg │ ├── domge.jpg │ ├── menus.webp │ ├── open.webp │ └── sticks.webp ├── text.js └── vn │ ├── P │ ├── Wkwk.mp3 │ └── p.mp3 ├── package.json └── public ├── P ├── configs.html ├── index.html └── y.png /README.md: -------------------------------------------------------------------------------- 1 | # SC-BOT-WA 2 | Subscribe Channel Hanbu FF 3 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/app.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/config.json -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/handler.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/index.js -------------------------------------------------------------------------------- /lib/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/afk.js -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/func.js -------------------------------------------------------------------------------- /lib/greet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/greet.js -------------------------------------------------------------------------------- /lib/http-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/http-server.js -------------------------------------------------------------------------------- /lib/json/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/json/dataGc.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lib/json/dataUser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lib/json/vn.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Wkwk" 3 | ] -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/temp/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/temp/close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/temp/close.webp -------------------------------------------------------------------------------- /lib/temp/doge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/temp/doge.jpg -------------------------------------------------------------------------------- /lib/temp/domge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/temp/domge.jpg -------------------------------------------------------------------------------- /lib/temp/menus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/temp/menus.webp -------------------------------------------------------------------------------- /lib/temp/open.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/temp/open.webp -------------------------------------------------------------------------------- /lib/temp/sticks.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/temp/sticks.webp -------------------------------------------------------------------------------- /lib/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/text.js -------------------------------------------------------------------------------- /lib/vn/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/vn/Wkwk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/vn/Wkwk.mp3 -------------------------------------------------------------------------------- /lib/vn/p.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/lib/vn/p.mp3 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/package.json -------------------------------------------------------------------------------- /public/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/configs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/public/configs.html -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/public/index.html -------------------------------------------------------------------------------- /public/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/SC-BOT-WAA/HEAD/public/y.png --------------------------------------------------------------------------------