├── .env.example ├── .gitignore ├── README.md ├── database └── .gitignore ├── example.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── client.ts ├── commands │ ├── downloader │ │ ├── tiktokdl.ts │ │ ├── ytmp3.ts │ │ └── ytmp4.ts │ ├── general │ │ ├── help.ts │ │ ├── ping.ts │ │ └── uptime.ts │ ├── group │ │ ├── hidetag.ts │ │ ├── topsider.ts │ │ └── topyapping.ts │ ├── minigames │ │ ├── tebakgambar.ts │ │ └── ttslontong.ts │ ├── owner │ │ ├── ban.ts │ │ ├── banlist.ts │ │ ├── eval.ts │ │ ├── hidetagowner.ts │ │ └── unban.ts │ └── tools │ │ ├── brat.ts │ │ ├── bratvideo.ts │ │ ├── get.ts │ │ ├── igprofilepic.ts │ │ ├── quotly.ts │ │ ├── shorturl.ts │ │ ├── sticker.ts │ │ ├── toimage.ts │ │ ├── unlockviewonce.ts │ │ └── whatanime.ts ├── common │ └── types.d.ts ├── index.ts ├── lib │ ├── generateMessage.ts │ ├── hastebin.ts │ ├── initGroups.ts │ ├── makeCooldown.ts │ ├── upload.ts │ └── util.ts └── middlewares │ ├── banMiddleware.ts │ ├── cooldownMiddleware.ts │ └── onlyGroupMiddleware.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | /state 4 | .env 5 | start.sh 6 | config.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/README.md -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite -------------------------------------------------------------------------------- /example.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/example.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/commands/downloader/tiktokdl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/downloader/tiktokdl.ts -------------------------------------------------------------------------------- /src/commands/downloader/ytmp3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/downloader/ytmp3.ts -------------------------------------------------------------------------------- /src/commands/downloader/ytmp4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/downloader/ytmp4.ts -------------------------------------------------------------------------------- /src/commands/general/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/general/help.ts -------------------------------------------------------------------------------- /src/commands/general/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/general/ping.ts -------------------------------------------------------------------------------- /src/commands/general/uptime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/general/uptime.ts -------------------------------------------------------------------------------- /src/commands/group/hidetag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/group/hidetag.ts -------------------------------------------------------------------------------- /src/commands/group/topsider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/group/topsider.ts -------------------------------------------------------------------------------- /src/commands/group/topyapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/group/topyapping.ts -------------------------------------------------------------------------------- /src/commands/minigames/tebakgambar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/minigames/tebakgambar.ts -------------------------------------------------------------------------------- /src/commands/minigames/ttslontong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/minigames/ttslontong.ts -------------------------------------------------------------------------------- /src/commands/owner/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/owner/ban.ts -------------------------------------------------------------------------------- /src/commands/owner/banlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/owner/banlist.ts -------------------------------------------------------------------------------- /src/commands/owner/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/owner/eval.ts -------------------------------------------------------------------------------- /src/commands/owner/hidetagowner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/owner/hidetagowner.ts -------------------------------------------------------------------------------- /src/commands/owner/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/owner/unban.ts -------------------------------------------------------------------------------- /src/commands/tools/brat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/brat.ts -------------------------------------------------------------------------------- /src/commands/tools/bratvideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/bratvideo.ts -------------------------------------------------------------------------------- /src/commands/tools/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/get.ts -------------------------------------------------------------------------------- /src/commands/tools/igprofilepic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/igprofilepic.ts -------------------------------------------------------------------------------- /src/commands/tools/quotly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/quotly.ts -------------------------------------------------------------------------------- /src/commands/tools/shorturl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/shorturl.ts -------------------------------------------------------------------------------- /src/commands/tools/sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/sticker.ts -------------------------------------------------------------------------------- /src/commands/tools/toimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/toimage.ts -------------------------------------------------------------------------------- /src/commands/tools/unlockviewonce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/unlockviewonce.ts -------------------------------------------------------------------------------- /src/commands/tools/whatanime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/commands/tools/whatanime.ts -------------------------------------------------------------------------------- /src/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/common/types.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/generateMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/lib/generateMessage.ts -------------------------------------------------------------------------------- /src/lib/hastebin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/lib/hastebin.ts -------------------------------------------------------------------------------- /src/lib/initGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/lib/initGroups.ts -------------------------------------------------------------------------------- /src/lib/makeCooldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/lib/makeCooldown.ts -------------------------------------------------------------------------------- /src/lib/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/lib/upload.ts -------------------------------------------------------------------------------- /src/lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/lib/util.ts -------------------------------------------------------------------------------- /src/middlewares/banMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/middlewares/banMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/cooldownMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/middlewares/cooldownMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/onlyGroupMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/src/middlewares/onlyGroupMiddleware.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JastinXyz/cukuftawu/HEAD/tsconfig.json --------------------------------------------------------------------------------