├── Dockerfile ├── Menu ├── helga.js └── helga.js.bak ├── Procfile ├── app.json ├── database ├── afk.json ├── antilink.json ├── autosticker.json ├── bad.json ├── commands.json ├── imagi.json ├── kickarea.json ├── mute.json ├── nsfw.json ├── registered.json ├── scommand.json ├── setik.json ├── tictactoe.json ├── vien.json ├── welkom.json └── ©Helga Ilham ├── helga.jpg ├── helga.js ├── index.js ├── install.sh ├── lib ├── autoresp.js ├── color.js ├── converter.js ├── exif.js ├── fetcher.js ├── functions.js ├── gtts.js ├── herodetail.js ├── herolist.js ├── igdown.js ├── lirik.js ├── mediafire.js ├── pinterest.js ├── simple.js ├── tiktokdl.js ├── uploadimg.js ├── webp2mp4.js ├── wiki.js ├── ytdl.js └── ©Helga Ilham ├── media ├── donasi.jpg ├── image │ ├── Denpa │ └── bitch boot.jpg ├── sticker │ └── Denpa ├── vn │ ├── Denpa │ └── toxic.mp3 └── ©Helga Ilham ├── package.json ├── sampah └── ©Helga Ilham ├── settings.json ├── sticker ├── 1.webp ├── 2.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── anime │ ├── admin.webp │ ├── kaget.webp │ ├── notadmin.webp │ ├── ok.webp │ ├── owner.webp │ ├── toxic.webp │ └── wait.webp └── data.exif ├── tes.js ├── tos.png └── undefined.jpeg /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/Dockerfile -------------------------------------------------------------------------------- /Menu/helga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/Menu/helga.js -------------------------------------------------------------------------------- /Menu/helga.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/Menu/helga.js.bak -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker : node index 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/app.json -------------------------------------------------------------------------------- /database/afk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/afk.json -------------------------------------------------------------------------------- /database/antilink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/antilink.json -------------------------------------------------------------------------------- /database/autosticker.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/bad.json -------------------------------------------------------------------------------- /database/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/commands.json -------------------------------------------------------------------------------- /database/imagi.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /database/kickarea.json: -------------------------------------------------------------------------------- 1 | ["6285866295942-1625902857@g.us"] -------------------------------------------------------------------------------- /database/mute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/mute.json -------------------------------------------------------------------------------- /database/nsfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/nsfw.json -------------------------------------------------------------------------------- /database/registered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/registered.json -------------------------------------------------------------------------------- /database/scommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/scommand.json -------------------------------------------------------------------------------- /database/setik.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /database/tictactoe.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/vien.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /database/welkom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/database/welkom.json -------------------------------------------------------------------------------- /database/©Helga Ilham: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /helga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/helga.jpg -------------------------------------------------------------------------------- /helga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/helga.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/index.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/install.sh -------------------------------------------------------------------------------- /lib/autoresp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/autoresp.js -------------------------------------------------------------------------------- /lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/color.js -------------------------------------------------------------------------------- /lib/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/converter.js -------------------------------------------------------------------------------- /lib/exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/exif.js -------------------------------------------------------------------------------- /lib/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/fetcher.js -------------------------------------------------------------------------------- /lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/functions.js -------------------------------------------------------------------------------- /lib/gtts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/gtts.js -------------------------------------------------------------------------------- /lib/herodetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/herodetail.js -------------------------------------------------------------------------------- /lib/herolist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/herolist.js -------------------------------------------------------------------------------- /lib/igdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/igdown.js -------------------------------------------------------------------------------- /lib/lirik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/lirik.js -------------------------------------------------------------------------------- /lib/mediafire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/mediafire.js -------------------------------------------------------------------------------- /lib/pinterest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/pinterest.js -------------------------------------------------------------------------------- /lib/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/simple.js -------------------------------------------------------------------------------- /lib/tiktokdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/tiktokdl.js -------------------------------------------------------------------------------- /lib/uploadimg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/uploadimg.js -------------------------------------------------------------------------------- /lib/webp2mp4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/webp2mp4.js -------------------------------------------------------------------------------- /lib/wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/wiki.js -------------------------------------------------------------------------------- /lib/ytdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/lib/ytdl.js -------------------------------------------------------------------------------- /lib/©Helga Ilham: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/donasi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/media/donasi.jpg -------------------------------------------------------------------------------- /media/image/Denpa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/image/bitch boot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/media/image/bitch boot.jpg -------------------------------------------------------------------------------- /media/sticker/Denpa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/vn/Denpa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/vn/toxic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/media/vn/toxic.mp3 -------------------------------------------------------------------------------- /media/©Helga Ilham: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/package.json -------------------------------------------------------------------------------- /sampah/©Helga Ilham: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/settings.json -------------------------------------------------------------------------------- /sticker/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/1.webp -------------------------------------------------------------------------------- /sticker/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/2.webp -------------------------------------------------------------------------------- /sticker/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/3.webp -------------------------------------------------------------------------------- /sticker/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/4.webp -------------------------------------------------------------------------------- /sticker/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/5.webp -------------------------------------------------------------------------------- /sticker/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/6.webp -------------------------------------------------------------------------------- /sticker/anime/admin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/admin.webp -------------------------------------------------------------------------------- /sticker/anime/kaget.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/kaget.webp -------------------------------------------------------------------------------- /sticker/anime/notadmin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/notadmin.webp -------------------------------------------------------------------------------- /sticker/anime/ok.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/ok.webp -------------------------------------------------------------------------------- /sticker/anime/owner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/owner.webp -------------------------------------------------------------------------------- /sticker/anime/toxic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/toxic.webp -------------------------------------------------------------------------------- /sticker/anime/wait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/anime/wait.webp -------------------------------------------------------------------------------- /sticker/data.exif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/sticker/data.exif -------------------------------------------------------------------------------- /tes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/tes.js -------------------------------------------------------------------------------- /tos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/tos.png -------------------------------------------------------------------------------- /undefined.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelgaIlham/HELGAV11/HEAD/undefined.jpeg --------------------------------------------------------------------------------