├── .dockerignore ├── .env.sample ├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ ├── autofix.yml │ └── rename.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Mix ├── __init__.py ├── __main__.py ├── core │ ├── __init__.py │ ├── bahan.jpg │ ├── bahan.jpg_ │ ├── bahan2.png │ ├── bahanan.jpg_ │ ├── banner.png │ ├── btn.py │ ├── cek_update.py │ ├── colong.py │ ├── font.otf │ ├── font.ttf │ ├── gclog.py │ ├── git.py │ ├── http.py │ ├── misc.py │ ├── mix-img.jpg │ ├── msgty.py │ ├── newdb.py │ ├── parser.py │ ├── pastebin.py │ ├── sender_tools.py │ ├── stick_tools.py │ ├── tools_anim.py │ ├── tools_media.py │ ├── tools_music.py │ ├── tools_quote.py │ ├── vc.raw │ └── waktu.py └── mix_client.py ├── README.md ├── app.json ├── assistant ├── __init__.py ├── call_calc.py ├── call_copy.py ├── call_help.py ├── call_lang.py ├── call_markdown.py ├── copy.py ├── inline.py ├── kang.py └── start.py ├── beban.py ├── bg_jing.txt ├── clean ├── config.py ├── heroku.yml ├── langs ├── __init__.py └── strings │ ├── en.yml │ ├── id.yml │ └── toxic.yml ├── modular ├── __init__.py ├── adzan.py ├── afk.py ├── alive.py ├── anilist.py ├── anim.py ├── autoend.py ├── auutored.py ├── base64.py ├── button.py ├── calc.py ├── carbonara.py ├── cekspam.py ├── class_tik.py ├── convert.py ├── copy_con.py ├── database.py ├── dev.py ├── download.py ├── fakeaction.py ├── games.py ├── gcast.py ├── github.py ├── global.py ├── google.py ├── graph.py ├── group.py ├── gruplog.py ├── help.py ├── heroku.py ├── image.py ├── info.py ├── invite.py ├── ipsearch.py ├── joinleave.py ├── jokes.py ├── katanime.py ├── kota.py ├── limit.py ├── lirik.py ├── locks.py ├── logo.py ├── mail.py ├── markdown.py ├── meme.py ├── memify.py ├── mention.py ├── morse.py ├── music.py ├── notes.py ├── nulis.py ├── pantun.py ├── pastebin.py ├── pinge.py ├── pinterest.py ├── pmpermit.py ├── profile.py ├── proxy.py ├── qousu.py ├── quran.py ├── repository.py ├── restrict.py ├── rmbg.py ├── sangmata.py ├── shid.py ├── spam.py ├── speedometer.py ├── spy.py ├── sticker.py ├── sudo.py ├── supan.py ├── system.py ├── terjemah.py ├── tiny.py ├── tod.py ├── toxic.py ├── toxic2.py ├── toxic3.py ├── toxic4.py ├── toxic5.py ├── toxic6.py ├── toxic7.py ├── toxic8.py ├── toxic9.py ├── uemoji.py ├── uprefixes.py ├── vcs.py ├── waifu.py ├── webshot.py └── welcome.py ├── requirements.txt └── start /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @kenapanan -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/.github/workflows/rename.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Mix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/__init__.py -------------------------------------------------------------------------------- /Mix/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/__main__.py -------------------------------------------------------------------------------- /Mix/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/__init__.py -------------------------------------------------------------------------------- /Mix/core/bahan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/bahan.jpg -------------------------------------------------------------------------------- /Mix/core/bahan.jpg_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/bahan.jpg_ -------------------------------------------------------------------------------- /Mix/core/bahan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/bahan2.png -------------------------------------------------------------------------------- /Mix/core/bahanan.jpg_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/bahanan.jpg_ -------------------------------------------------------------------------------- /Mix/core/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/banner.png -------------------------------------------------------------------------------- /Mix/core/btn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/btn.py -------------------------------------------------------------------------------- /Mix/core/cek_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/cek_update.py -------------------------------------------------------------------------------- /Mix/core/colong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/colong.py -------------------------------------------------------------------------------- /Mix/core/font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/font.otf -------------------------------------------------------------------------------- /Mix/core/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/font.ttf -------------------------------------------------------------------------------- /Mix/core/gclog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/gclog.py -------------------------------------------------------------------------------- /Mix/core/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/git.py -------------------------------------------------------------------------------- /Mix/core/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/http.py -------------------------------------------------------------------------------- /Mix/core/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/misc.py -------------------------------------------------------------------------------- /Mix/core/mix-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/mix-img.jpg -------------------------------------------------------------------------------- /Mix/core/msgty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/msgty.py -------------------------------------------------------------------------------- /Mix/core/newdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/newdb.py -------------------------------------------------------------------------------- /Mix/core/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/parser.py -------------------------------------------------------------------------------- /Mix/core/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/pastebin.py -------------------------------------------------------------------------------- /Mix/core/sender_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/sender_tools.py -------------------------------------------------------------------------------- /Mix/core/stick_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/stick_tools.py -------------------------------------------------------------------------------- /Mix/core/tools_anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/tools_anim.py -------------------------------------------------------------------------------- /Mix/core/tools_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/tools_media.py -------------------------------------------------------------------------------- /Mix/core/tools_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/tools_music.py -------------------------------------------------------------------------------- /Mix/core/tools_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/tools_quote.py -------------------------------------------------------------------------------- /Mix/core/vc.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/vc.raw -------------------------------------------------------------------------------- /Mix/core/waktu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/core/waktu.py -------------------------------------------------------------------------------- /Mix/mix_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/Mix/mix_client.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/app.json -------------------------------------------------------------------------------- /assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/__init__.py -------------------------------------------------------------------------------- /assistant/call_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/call_calc.py -------------------------------------------------------------------------------- /assistant/call_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/call_copy.py -------------------------------------------------------------------------------- /assistant/call_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/call_help.py -------------------------------------------------------------------------------- /assistant/call_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/call_lang.py -------------------------------------------------------------------------------- /assistant/call_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/call_markdown.py -------------------------------------------------------------------------------- /assistant/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/copy.py -------------------------------------------------------------------------------- /assistant/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/inline.py -------------------------------------------------------------------------------- /assistant/kang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/kang.py -------------------------------------------------------------------------------- /assistant/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/assistant/start.py -------------------------------------------------------------------------------- /beban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/beban.py -------------------------------------------------------------------------------- /bg_jing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/bg_jing.txt -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/clean -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/config.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/heroku.yml -------------------------------------------------------------------------------- /langs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/langs/__init__.py -------------------------------------------------------------------------------- /langs/strings/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/langs/strings/en.yml -------------------------------------------------------------------------------- /langs/strings/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/langs/strings/id.yml -------------------------------------------------------------------------------- /langs/strings/toxic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/langs/strings/toxic.yml -------------------------------------------------------------------------------- /modular/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/__init__.py -------------------------------------------------------------------------------- /modular/adzan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/adzan.py -------------------------------------------------------------------------------- /modular/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/afk.py -------------------------------------------------------------------------------- /modular/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/alive.py -------------------------------------------------------------------------------- /modular/anilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/anilist.py -------------------------------------------------------------------------------- /modular/anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/anim.py -------------------------------------------------------------------------------- /modular/autoend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/autoend.py -------------------------------------------------------------------------------- /modular/auutored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/auutored.py -------------------------------------------------------------------------------- /modular/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/base64.py -------------------------------------------------------------------------------- /modular/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/button.py -------------------------------------------------------------------------------- /modular/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/calc.py -------------------------------------------------------------------------------- /modular/carbonara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/carbonara.py -------------------------------------------------------------------------------- /modular/cekspam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/cekspam.py -------------------------------------------------------------------------------- /modular/class_tik.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modular/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/convert.py -------------------------------------------------------------------------------- /modular/copy_con.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/copy_con.py -------------------------------------------------------------------------------- /modular/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/database.py -------------------------------------------------------------------------------- /modular/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/dev.py -------------------------------------------------------------------------------- /modular/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/download.py -------------------------------------------------------------------------------- /modular/fakeaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/fakeaction.py -------------------------------------------------------------------------------- /modular/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/games.py -------------------------------------------------------------------------------- /modular/gcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/gcast.py -------------------------------------------------------------------------------- /modular/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/github.py -------------------------------------------------------------------------------- /modular/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/global.py -------------------------------------------------------------------------------- /modular/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/google.py -------------------------------------------------------------------------------- /modular/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/graph.py -------------------------------------------------------------------------------- /modular/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/group.py -------------------------------------------------------------------------------- /modular/gruplog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/gruplog.py -------------------------------------------------------------------------------- /modular/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/help.py -------------------------------------------------------------------------------- /modular/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/heroku.py -------------------------------------------------------------------------------- /modular/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/image.py -------------------------------------------------------------------------------- /modular/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/info.py -------------------------------------------------------------------------------- /modular/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/invite.py -------------------------------------------------------------------------------- /modular/ipsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/ipsearch.py -------------------------------------------------------------------------------- /modular/joinleave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/joinleave.py -------------------------------------------------------------------------------- /modular/jokes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/jokes.py -------------------------------------------------------------------------------- /modular/katanime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/katanime.py -------------------------------------------------------------------------------- /modular/kota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/kota.py -------------------------------------------------------------------------------- /modular/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/limit.py -------------------------------------------------------------------------------- /modular/lirik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/lirik.py -------------------------------------------------------------------------------- /modular/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/locks.py -------------------------------------------------------------------------------- /modular/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/logo.py -------------------------------------------------------------------------------- /modular/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/mail.py -------------------------------------------------------------------------------- /modular/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/markdown.py -------------------------------------------------------------------------------- /modular/meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/meme.py -------------------------------------------------------------------------------- /modular/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/memify.py -------------------------------------------------------------------------------- /modular/mention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/mention.py -------------------------------------------------------------------------------- /modular/morse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/morse.py -------------------------------------------------------------------------------- /modular/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/music.py -------------------------------------------------------------------------------- /modular/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/notes.py -------------------------------------------------------------------------------- /modular/nulis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/nulis.py -------------------------------------------------------------------------------- /modular/pantun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/pantun.py -------------------------------------------------------------------------------- /modular/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/pastebin.py -------------------------------------------------------------------------------- /modular/pinge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/pinge.py -------------------------------------------------------------------------------- /modular/pinterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/pinterest.py -------------------------------------------------------------------------------- /modular/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/pmpermit.py -------------------------------------------------------------------------------- /modular/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/profile.py -------------------------------------------------------------------------------- /modular/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/proxy.py -------------------------------------------------------------------------------- /modular/qousu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/qousu.py -------------------------------------------------------------------------------- /modular/quran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/quran.py -------------------------------------------------------------------------------- /modular/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/repository.py -------------------------------------------------------------------------------- /modular/restrict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/restrict.py -------------------------------------------------------------------------------- /modular/rmbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/rmbg.py -------------------------------------------------------------------------------- /modular/sangmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/sangmata.py -------------------------------------------------------------------------------- /modular/shid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/shid.py -------------------------------------------------------------------------------- /modular/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/spam.py -------------------------------------------------------------------------------- /modular/speedometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/speedometer.py -------------------------------------------------------------------------------- /modular/spy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/spy.py -------------------------------------------------------------------------------- /modular/sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/sticker.py -------------------------------------------------------------------------------- /modular/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/sudo.py -------------------------------------------------------------------------------- /modular/supan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/supan.py -------------------------------------------------------------------------------- /modular/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/system.py -------------------------------------------------------------------------------- /modular/terjemah.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/terjemah.py -------------------------------------------------------------------------------- /modular/tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/tiny.py -------------------------------------------------------------------------------- /modular/tod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/tod.py -------------------------------------------------------------------------------- /modular/toxic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic.py -------------------------------------------------------------------------------- /modular/toxic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic2.py -------------------------------------------------------------------------------- /modular/toxic3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic3.py -------------------------------------------------------------------------------- /modular/toxic4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic4.py -------------------------------------------------------------------------------- /modular/toxic5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic5.py -------------------------------------------------------------------------------- /modular/toxic6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic6.py -------------------------------------------------------------------------------- /modular/toxic7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic7.py -------------------------------------------------------------------------------- /modular/toxic8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic8.py -------------------------------------------------------------------------------- /modular/toxic9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/toxic9.py -------------------------------------------------------------------------------- /modular/uemoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/uemoji.py -------------------------------------------------------------------------------- /modular/uprefixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/uprefixes.py -------------------------------------------------------------------------------- /modular/vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/vcs.py -------------------------------------------------------------------------------- /modular/waifu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/waifu.py -------------------------------------------------------------------------------- /modular/webshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/modular/webshot.py -------------------------------------------------------------------------------- /modular/welcome.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naya1503/Mix-Userbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- 1 | python3 -m Mix --------------------------------------------------------------------------------