├── Procfile ├── README.md ├── app.json ├── database ├── antilink.json ├── antivirtex.json ├── banchat.json ├── commands.json └── scommand.json ├── lib ├── color.js ├── commands.js ├── darkjokes.js ├── fetcher.js ├── functions.js ├── off.json ├── offline.js ├── vote.js ├── vote │ ├── P │ └── lupa bang ├── voting.json ├── webp2mp4.js └── ytdl.js ├── message ├── help.js ├── help2.js └── index.js ├── package.json ├── run.js ├── stik ├── data.exif ├── fake.jpeg └── thumb.jpeg ├── temp ├── audio │ └── P ├── foto.json ├── foto │ └── Anjay ├── image.json ├── stick.json ├── stick │ └── angga ├── stik.json ├── video.json ├── video │ ├── Anjay │ └── P └── vn.json └── xdev.js /Procfile: -------------------------------------------------------------------------------- 1 | worker: node run 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/app.json -------------------------------------------------------------------------------- /database/antilink.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /database/antivirtex.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/banchat.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/commands.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/scommand.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/color.js -------------------------------------------------------------------------------- /lib/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/commands.js -------------------------------------------------------------------------------- /lib/darkjokes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/darkjokes.js -------------------------------------------------------------------------------- /lib/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/fetcher.js -------------------------------------------------------------------------------- /lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/functions.js -------------------------------------------------------------------------------- /lib/off.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/offline.js -------------------------------------------------------------------------------- /lib/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/vote.js -------------------------------------------------------------------------------- /lib/vote/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/vote/lupa bang: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/voting.json: -------------------------------------------------------------------------------- 1 | ["62895357313000-1627701724@g.us"] -------------------------------------------------------------------------------- /lib/webp2mp4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/webp2mp4.js -------------------------------------------------------------------------------- /lib/ytdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/lib/ytdl.js -------------------------------------------------------------------------------- /message/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/message/help.js -------------------------------------------------------------------------------- /message/help2.js: -------------------------------------------------------------------------------- 1 | exports.help2 = () => { 2 | return`` 3 | } -------------------------------------------------------------------------------- /message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/message/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/package.json -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/run.js -------------------------------------------------------------------------------- /stik/data.exif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/stik/data.exif -------------------------------------------------------------------------------- /stik/fake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/stik/fake.jpeg -------------------------------------------------------------------------------- /stik/thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/stik/thumb.jpeg -------------------------------------------------------------------------------- /temp/audio/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/foto.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /temp/foto/Anjay: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/image.json: -------------------------------------------------------------------------------- 1 | ["tytyd nino"] -------------------------------------------------------------------------------- /temp/stick.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /temp/stick/angga: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/stik.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /temp/video.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /temp/video/Anjay: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/video/P: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/vn.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /xdev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggazyy/xdev-self/HEAD/xdev.js --------------------------------------------------------------------------------