├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── black.yml │ ├── docker-publish.yml │ ├── pylint.yml │ └── python-app.yml ├── .gitignore ├── CODE_OF_CONDUCT ├── Dockerfile ├── Getstring.sh ├── KingUserbot └── kinguserbot.png ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── exec.sh ├── generate_session_file.py ├── heroku.yml ├── index.html ├── king_startup.py ├── requirements.txt ├── resource ├── king-startup.py ├── startup │ └── startup.sh └── termux_session_gen.sh ├── runtime.txt ├── sample_config.env ├── userbot ├── __init__.py ├── __main__.py ├── core │ └── logger.py ├── events.py ├── modules │ ├── __init__.py │ ├── __inlinehelp.py │ ├── admin.py │ ├── adzan.py │ ├── afk.py │ ├── android.py │ ├── anilist.py │ ├── animasi.py │ ├── animasi2.py │ ├── animasi3.py │ ├── animasi4.py │ ├── animasi5.py │ ├── anime.py │ ├── anti_spambot.py │ ├── antiflood.py │ ├── aplikasi.py │ ├── aria.py │ ├── ascii.py │ ├── bin.py │ ├── bitly.py │ ├── blacklist.py │ ├── calls_group.py │ ├── carbon.py │ ├── chat.py │ ├── code.py │ ├── core.py │ ├── costum.py │ ├── covid.py │ ├── create.py │ ├── createstickers.py │ ├── db.py │ ├── deezloader.py │ ├── echo.py │ ├── emojigames.py │ ├── fakeaction.py │ ├── fakeaddres.py │ ├── federasi.py │ ├── figlet.py │ ├── filemanager.py │ ├── filter.py │ ├── frog.py │ ├── gdrive.py │ ├── getmusic.py │ ├── gitcommit.py │ ├── github.py │ ├── gkick.py │ ├── glitcher.py │ ├── globalbanned.py │ ├── globalbroadcast.py │ ├── googlephotos.py │ ├── gps.py │ ├── hacking.py │ ├── hash.py │ ├── help.py │ ├── hentai.py │ ├── heroku.py │ ├── id.py │ ├── imgmemes.py │ ├── info_akun.py │ ├── invite_all.py │ ├── kekuatan.py │ ├── king.py │ ├── kingae.py │ ├── kingdeteksi.py │ ├── kingfun.py │ ├── kinghelper.py │ ├── kinghz.py │ ├── kingig.py │ ├── kingimp.py │ ├── kingmemes.py │ ├── kingmisc.py │ ├── kingtiny.py │ ├── kingtm.py │ ├── kingtt.py │ ├── kingwc.py │ ├── lastfm.py │ ├── lock.py │ ├── lyrics.py │ ├── mega_downloader.py │ ├── memes.py │ ├── memify.py │ ├── mentions.py │ ├── messages.py │ ├── misc.py │ ├── music_lyrics.py │ ├── nekobot.py │ ├── notes.py │ ├── oi.py │ ├── pastebin.py │ ├── pesandm.py │ ├── phreaker.py │ ├── pmpermit.py │ ├── profile.py │ ├── quotly.py │ ├── randompp.py │ ├── resi.py │ ├── reverse.py │ ├── salam.py │ ├── sangmata.py │ ├── santet.py │ ├── scrapers.py │ ├── sed.py │ ├── sibuk.py │ ├── spam.py │ ├── spotifynow.py │ ├── sql_helper │ │ ├── DS_Store │ │ ├── __init__.py │ │ ├── antiflood_sql.py │ │ ├── blacklist_sql.py │ │ ├── echo_sql.py │ │ ├── fban_sql.py │ │ ├── filter_sql.py │ │ ├── gban_sql.py │ │ ├── globals.py │ │ ├── gmute_sql.py │ │ ├── google_drive_sql.py │ │ ├── keep_read_sql.py │ │ ├── lydia_sql.py │ │ ├── mute_sql.py │ │ ├── notes_sql.py │ │ ├── pm_permit_sql.py │ │ ├── snips_sql.py │ │ ├── spam_mute_sql.py │ │ ├── warns_sql.py │ │ └── welcome_sql.py │ ├── ss_video.py │ ├── stat.py │ ├── stickers.py │ ├── stickers_v2.py │ ├── super_all.py │ ├── system_stats.py │ ├── tag_all.py │ ├── tags_all.py │ ├── telegraph.py │ ├── time_date.py │ ├── torrentsearch.py │ ├── transform.py │ ├── updater.py │ ├── upload_download.py │ ├── user_id.py │ ├── waifu.py │ ├── wallpaper.py │ ├── weather.py │ ├── webupload.py │ ├── welcomes.py │ ├── whois.py │ ├── www.py │ ├── xbot.py │ ├── xiaomi.py │ └── zipfile.py └── utils │ ├── FastTelethon.py │ ├── __init__.py │ ├── chrome.py │ ├── event.py │ ├── exceptions.py │ ├── format.py │ ├── funtions.py │ ├── google_images_download.py │ ├── pastebin.py │ ├── prettyjson.py │ ├── progress.py │ ├── styles │ ├── FontKing.ttf │ ├── MutantAcademyStyle.ttf │ ├── ProductSans-BoldItalic.ttf │ ├── ProductSans-Light.ttf │ ├── alice.txt │ └── kingfont.ttf │ └── tools.py ├── varshelper.txt └── windows_startup_script.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Getstring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/Getstring.sh -------------------------------------------------------------------------------- /KingUserbot/kinguserbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/KingUserbot/kinguserbot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/app.json -------------------------------------------------------------------------------- /exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/exec.sh -------------------------------------------------------------------------------- /generate_session_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/generate_session_file.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/heroku.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/index.html -------------------------------------------------------------------------------- /king_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/king_startup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/king-startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/resource/king-startup.py -------------------------------------------------------------------------------- /resource/startup/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/resource/startup/startup.sh -------------------------------------------------------------------------------- /resource/termux_session_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/resource/termux_session_gen.sh -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.6 2 | -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/sample_config.env -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/core/logger.py -------------------------------------------------------------------------------- /userbot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/events.py -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/__inlinehelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/__inlinehelp.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/adzan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/adzan.py -------------------------------------------------------------------------------- /userbot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/afk.py -------------------------------------------------------------------------------- /userbot/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/android.py -------------------------------------------------------------------------------- /userbot/modules/anilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/anilist.py -------------------------------------------------------------------------------- /userbot/modules/animasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/animasi.py -------------------------------------------------------------------------------- /userbot/modules/animasi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/animasi2.py -------------------------------------------------------------------------------- /userbot/modules/animasi3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/animasi3.py -------------------------------------------------------------------------------- /userbot/modules/animasi4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/animasi4.py -------------------------------------------------------------------------------- /userbot/modules/animasi5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/animasi5.py -------------------------------------------------------------------------------- /userbot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/anime.py -------------------------------------------------------------------------------- /userbot/modules/anti_spambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/anti_spambot.py -------------------------------------------------------------------------------- /userbot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/antiflood.py -------------------------------------------------------------------------------- /userbot/modules/aplikasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/aplikasi.py -------------------------------------------------------------------------------- /userbot/modules/aria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/aria.py -------------------------------------------------------------------------------- /userbot/modules/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/ascii.py -------------------------------------------------------------------------------- /userbot/modules/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/bin.py -------------------------------------------------------------------------------- /userbot/modules/bitly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/bitly.py -------------------------------------------------------------------------------- /userbot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/blacklist.py -------------------------------------------------------------------------------- /userbot/modules/calls_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/calls_group.py -------------------------------------------------------------------------------- /userbot/modules/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/carbon.py -------------------------------------------------------------------------------- /userbot/modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/chat.py -------------------------------------------------------------------------------- /userbot/modules/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/code.py -------------------------------------------------------------------------------- /userbot/modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/core.py -------------------------------------------------------------------------------- /userbot/modules/costum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/costum.py -------------------------------------------------------------------------------- /userbot/modules/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/covid.py -------------------------------------------------------------------------------- /userbot/modules/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/create.py -------------------------------------------------------------------------------- /userbot/modules/createstickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/createstickers.py -------------------------------------------------------------------------------- /userbot/modules/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/db.py -------------------------------------------------------------------------------- /userbot/modules/deezloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/deezloader.py -------------------------------------------------------------------------------- /userbot/modules/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/echo.py -------------------------------------------------------------------------------- /userbot/modules/emojigames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/emojigames.py -------------------------------------------------------------------------------- /userbot/modules/fakeaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/fakeaction.py -------------------------------------------------------------------------------- /userbot/modules/fakeaddres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/fakeaddres.py -------------------------------------------------------------------------------- /userbot/modules/federasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/federasi.py -------------------------------------------------------------------------------- /userbot/modules/figlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/figlet.py -------------------------------------------------------------------------------- /userbot/modules/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/filemanager.py -------------------------------------------------------------------------------- /userbot/modules/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/filter.py -------------------------------------------------------------------------------- /userbot/modules/frog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/frog.py -------------------------------------------------------------------------------- /userbot/modules/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/gdrive.py -------------------------------------------------------------------------------- /userbot/modules/getmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/getmusic.py -------------------------------------------------------------------------------- /userbot/modules/gitcommit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/gitcommit.py -------------------------------------------------------------------------------- /userbot/modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/github.py -------------------------------------------------------------------------------- /userbot/modules/gkick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/gkick.py -------------------------------------------------------------------------------- /userbot/modules/glitcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/glitcher.py -------------------------------------------------------------------------------- /userbot/modules/globalbanned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/globalbanned.py -------------------------------------------------------------------------------- /userbot/modules/globalbroadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/globalbroadcast.py -------------------------------------------------------------------------------- /userbot/modules/googlephotos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/googlephotos.py -------------------------------------------------------------------------------- /userbot/modules/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/gps.py -------------------------------------------------------------------------------- /userbot/modules/hacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/hacking.py -------------------------------------------------------------------------------- /userbot/modules/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/hash.py -------------------------------------------------------------------------------- /userbot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/help.py -------------------------------------------------------------------------------- /userbot/modules/hentai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/hentai.py -------------------------------------------------------------------------------- /userbot/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/heroku.py -------------------------------------------------------------------------------- /userbot/modules/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/id.py -------------------------------------------------------------------------------- /userbot/modules/imgmemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/imgmemes.py -------------------------------------------------------------------------------- /userbot/modules/info_akun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/info_akun.py -------------------------------------------------------------------------------- /userbot/modules/invite_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/invite_all.py -------------------------------------------------------------------------------- /userbot/modules/kekuatan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kekuatan.py -------------------------------------------------------------------------------- /userbot/modules/king.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/king.py -------------------------------------------------------------------------------- /userbot/modules/kingae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingae.py -------------------------------------------------------------------------------- /userbot/modules/kingdeteksi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingdeteksi.py -------------------------------------------------------------------------------- /userbot/modules/kingfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingfun.py -------------------------------------------------------------------------------- /userbot/modules/kinghelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kinghelper.py -------------------------------------------------------------------------------- /userbot/modules/kinghz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kinghz.py -------------------------------------------------------------------------------- /userbot/modules/kingig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingig.py -------------------------------------------------------------------------------- /userbot/modules/kingimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingimp.py -------------------------------------------------------------------------------- /userbot/modules/kingmemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingmemes.py -------------------------------------------------------------------------------- /userbot/modules/kingmisc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingmisc.py -------------------------------------------------------------------------------- /userbot/modules/kingtiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingtiny.py -------------------------------------------------------------------------------- /userbot/modules/kingtm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingtm.py -------------------------------------------------------------------------------- /userbot/modules/kingtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingtt.py -------------------------------------------------------------------------------- /userbot/modules/kingwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/kingwc.py -------------------------------------------------------------------------------- /userbot/modules/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/lastfm.py -------------------------------------------------------------------------------- /userbot/modules/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/lock.py -------------------------------------------------------------------------------- /userbot/modules/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/lyrics.py -------------------------------------------------------------------------------- /userbot/modules/mega_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/mega_downloader.py -------------------------------------------------------------------------------- /userbot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/memes.py -------------------------------------------------------------------------------- /userbot/modules/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/memify.py -------------------------------------------------------------------------------- /userbot/modules/mentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/mentions.py -------------------------------------------------------------------------------- /userbot/modules/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/messages.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/music_lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/music_lyrics.py -------------------------------------------------------------------------------- /userbot/modules/nekobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/nekobot.py -------------------------------------------------------------------------------- /userbot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/notes.py -------------------------------------------------------------------------------- /userbot/modules/oi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/oi.py -------------------------------------------------------------------------------- /userbot/modules/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/pastebin.py -------------------------------------------------------------------------------- /userbot/modules/pesandm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/pesandm.py -------------------------------------------------------------------------------- /userbot/modules/phreaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/phreaker.py -------------------------------------------------------------------------------- /userbot/modules/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/pmpermit.py -------------------------------------------------------------------------------- /userbot/modules/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/profile.py -------------------------------------------------------------------------------- /userbot/modules/quotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/quotly.py -------------------------------------------------------------------------------- /userbot/modules/randompp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/randompp.py -------------------------------------------------------------------------------- /userbot/modules/resi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/resi.py -------------------------------------------------------------------------------- /userbot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/reverse.py -------------------------------------------------------------------------------- /userbot/modules/salam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/salam.py -------------------------------------------------------------------------------- /userbot/modules/sangmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sangmata.py -------------------------------------------------------------------------------- /userbot/modules/santet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/santet.py -------------------------------------------------------------------------------- /userbot/modules/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/scrapers.py -------------------------------------------------------------------------------- /userbot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sed.py -------------------------------------------------------------------------------- /userbot/modules/sibuk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sibuk.py -------------------------------------------------------------------------------- /userbot/modules/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/spam.py -------------------------------------------------------------------------------- /userbot/modules/spotifynow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/spotifynow.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/DS_Store -------------------------------------------------------------------------------- /userbot/modules/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/__init__.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/antiflood_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/blacklist_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/echo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/echo_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/fban_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/fban_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/filter_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/filter_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gban_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/gban_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/globals.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gmute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/gmute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/google_drive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/google_drive_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/keep_read_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/keep_read_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/lydia_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/lydia_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/notes_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/pm_permit_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/pm_permit_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/snips_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/snips_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/spam_mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/spam_mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/warns_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/sql_helper/welcome_sql.py -------------------------------------------------------------------------------- /userbot/modules/ss_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/ss_video.py -------------------------------------------------------------------------------- /userbot/modules/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/stat.py -------------------------------------------------------------------------------- /userbot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/stickers.py -------------------------------------------------------------------------------- /userbot/modules/stickers_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/stickers_v2.py -------------------------------------------------------------------------------- /userbot/modules/super_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/super_all.py -------------------------------------------------------------------------------- /userbot/modules/system_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/system_stats.py -------------------------------------------------------------------------------- /userbot/modules/tag_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/tag_all.py -------------------------------------------------------------------------------- /userbot/modules/tags_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/tags_all.py -------------------------------------------------------------------------------- /userbot/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/telegraph.py -------------------------------------------------------------------------------- /userbot/modules/time_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/time_date.py -------------------------------------------------------------------------------- /userbot/modules/torrentsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/torrentsearch.py -------------------------------------------------------------------------------- /userbot/modules/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/transform.py -------------------------------------------------------------------------------- /userbot/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/updater.py -------------------------------------------------------------------------------- /userbot/modules/upload_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/upload_download.py -------------------------------------------------------------------------------- /userbot/modules/user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/user_id.py -------------------------------------------------------------------------------- /userbot/modules/waifu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/waifu.py -------------------------------------------------------------------------------- /userbot/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/wallpaper.py -------------------------------------------------------------------------------- /userbot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/weather.py -------------------------------------------------------------------------------- /userbot/modules/webupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/webupload.py -------------------------------------------------------------------------------- /userbot/modules/welcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/welcomes.py -------------------------------------------------------------------------------- /userbot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/whois.py -------------------------------------------------------------------------------- /userbot/modules/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/www.py -------------------------------------------------------------------------------- /userbot/modules/xbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/xbot.py -------------------------------------------------------------------------------- /userbot/modules/xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/xiaomi.py -------------------------------------------------------------------------------- /userbot/modules/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/modules/zipfile.py -------------------------------------------------------------------------------- /userbot/utils/FastTelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/FastTelethon.py -------------------------------------------------------------------------------- /userbot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/__init__.py -------------------------------------------------------------------------------- /userbot/utils/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/chrome.py -------------------------------------------------------------------------------- /userbot/utils/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/event.py -------------------------------------------------------------------------------- /userbot/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/exceptions.py -------------------------------------------------------------------------------- /userbot/utils/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/format.py -------------------------------------------------------------------------------- /userbot/utils/funtions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/funtions.py -------------------------------------------------------------------------------- /userbot/utils/google_images_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/google_images_download.py -------------------------------------------------------------------------------- /userbot/utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/pastebin.py -------------------------------------------------------------------------------- /userbot/utils/prettyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/prettyjson.py -------------------------------------------------------------------------------- /userbot/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/progress.py -------------------------------------------------------------------------------- /userbot/utils/styles/FontKing.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/styles/FontKing.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/MutantAcademyStyle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/styles/MutantAcademyStyle.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/ProductSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/styles/ProductSans-BoldItalic.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/styles/ProductSans-Light.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/styles/alice.txt -------------------------------------------------------------------------------- /userbot/utils/styles/kingfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/styles/kingfont.ttf -------------------------------------------------------------------------------- /userbot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/userbot/utils/tools.py -------------------------------------------------------------------------------- /varshelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/varshelper.txt -------------------------------------------------------------------------------- /windows_startup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisuserbot/King-Userbot/HEAD/windows_startup_script.py --------------------------------------------------------------------------------