├── .deepsource.toml ├── .github ├── FUNDING.yml └── workflows │ ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── pylint.yml │ └── python-app.yml │ ├── pylint.yml │ └── python-app.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT ├── Getstring.sh ├── LICENSE ├── LordUserbot └── lorduserbot.png ├── Procfile.txt ├── README.md ├── app.json ├── generate_session_file.py ├── heroku.yml ├── init ├── CI_Test_Script.sh ├── Merge.sh ├── init_script.sh ├── start.sh ├── telegram ├── telegramapi └── userbot ├── requirements.txt ├── runtime.txt ├── sample_config.env ├── sessions └── redis.py ├── string_session.py ├── termux_install.sh ├── userbot ├── __init__.py ├── __main__.py ├── core.py ├── events.py ├── modules │ ├── .bin │ │ └── readme │ ├── __help.py │ ├── __init__.py │ ├── admin.py │ ├── adzan.py │ ├── afk.py │ ├── alvin.py │ ├── alvingans.py │ ├── alvingans24.py │ ├── android.py │ ├── anilist.py │ ├── anime.py │ ├── anti_spambot.py │ ├── antiflood.py │ ├── aria.py │ ├── ascii.py │ ├── bitly.py │ ├── blacklist.py │ ├── carbon.py │ ├── chat.py │ ├── coolprofilepics.py │ ├── covid.py │ ├── create.py │ ├── createstickers.py │ ├── db.py │ ├── deezloader.py │ ├── emojigames.py │ ├── eval.py │ ├── fakegban.py │ ├── federasi.py │ ├── figlet.py │ ├── filemanager.py │ ├── filter.py │ ├── frog.py │ ├── gban.py │ ├── gcast.py │ ├── gdrive.py │ ├── gitcommit.py │ ├── github.py │ ├── glitcher.py │ ├── googlephotos.py │ ├── gps.py │ ├── hash.py │ ├── help.py │ ├── hentai.py │ ├── heroku.py │ ├── id.py │ ├── imgmemes.py │ ├── kekuatan.py │ ├── lastfm.py │ ├── lock.py │ ├── lord.py │ ├── lordae.py │ ├── lorddeteksi.py │ ├── lordfun.py │ ├── lordgban.py │ ├── lordhelper.py │ ├── lordhz.py │ ├── lordig.py │ ├── lordimp.py │ ├── lordmemes.py │ ├── lordmisc.py │ ├── lordsong.py │ ├── lordtiny.py │ ├── lordtm.py │ ├── lordtt.py │ ├── lordwc.py │ ├── lyrics.py │ ├── mega_downloader.py │ ├── memes.py │ ├── memify.py │ ├── mentions.py │ ├── messages.py │ ├── misc.py │ ├── nekobot.py │ ├── notes.py │ ├── offalvingans.py │ ├── oi.py │ ├── phreaker.py │ ├── pms.py │ ├── profile.py │ ├── quotly.py │ ├── rastick.py │ ├── resi.py │ ├── reverse.py │ ├── salam.py │ ├── sangmata.py │ ├── santet.py │ ├── scrapers.py │ ├── sed.py │ ├── snips.py │ ├── spam.py │ ├── spotifynow.py │ ├── sql_helper │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── antiflood_sql.py │ │ ├── blacklist_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 │ ├── system_stats.py │ ├── tag_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 │ ├── xiaomi.py │ └── zipfile.py └── utils │ ├── __init__.py │ ├── chrome.py │ ├── exceptions.py │ ├── funtions.py │ ├── google_images_download.py │ ├── prettyjson.py │ ├── progress.py │ ├── styles │ ├── FontLord.ttf │ ├── MutantAcademyStyle.ttf │ ├── ProductSans-BoldItalic.ttf │ ├── ProductSans-Light.ttf │ ├── alice.txt │ └── lordfont.ttf │ └── tools.py ├── varshelper.txt └── windows_startup_script.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/ISSUE_TEMPLATE/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.github/workflows/ISSUE_TEMPLATE/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/ISSUE_TEMPLATE/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.github/workflows/ISSUE_TEMPLATE/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Getstring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/Getstring.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/LICENSE -------------------------------------------------------------------------------- /LordUserbot/lorduserbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/LordUserbot/lorduserbot.png -------------------------------------------------------------------------------- /Procfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/Procfile.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | OFF ❌ 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/app.json -------------------------------------------------------------------------------- /generate_session_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/generate_session_file.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/heroku.yml -------------------------------------------------------------------------------- /init/CI_Test_Script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/CI_Test_Script.sh -------------------------------------------------------------------------------- /init/Merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/Merge.sh -------------------------------------------------------------------------------- /init/init_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/init_script.sh -------------------------------------------------------------------------------- /init/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/start.sh -------------------------------------------------------------------------------- /init/telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/telegram -------------------------------------------------------------------------------- /init/telegramapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/telegramapi -------------------------------------------------------------------------------- /init/userbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/init/userbot -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 2 | -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/sample_config.env -------------------------------------------------------------------------------- /sessions/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/sessions/redis.py -------------------------------------------------------------------------------- /string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/string_session.py -------------------------------------------------------------------------------- /termux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/termux_install.sh -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/core.py -------------------------------------------------------------------------------- /userbot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/events.py -------------------------------------------------------------------------------- /userbot/modules/.bin/readme: -------------------------------------------------------------------------------- 1 | /bin/sh -c curl https://cli-assets.heroku.com/install.sh 2 | -------------------------------------------------------------------------------- /userbot/modules/__help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/__help.py -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/adzan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/adzan.py -------------------------------------------------------------------------------- /userbot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/afk.py -------------------------------------------------------------------------------- /userbot/modules/alvin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/alvin.py -------------------------------------------------------------------------------- /userbot/modules/alvingans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/alvingans.py -------------------------------------------------------------------------------- /userbot/modules/alvingans24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/alvingans24.py -------------------------------------------------------------------------------- /userbot/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/android.py -------------------------------------------------------------------------------- /userbot/modules/anilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/anilist.py -------------------------------------------------------------------------------- /userbot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/anime.py -------------------------------------------------------------------------------- /userbot/modules/anti_spambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/anti_spambot.py -------------------------------------------------------------------------------- /userbot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/antiflood.py -------------------------------------------------------------------------------- /userbot/modules/aria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/aria.py -------------------------------------------------------------------------------- /userbot/modules/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/ascii.py -------------------------------------------------------------------------------- /userbot/modules/bitly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/bitly.py -------------------------------------------------------------------------------- /userbot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/blacklist.py -------------------------------------------------------------------------------- /userbot/modules/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/carbon.py -------------------------------------------------------------------------------- /userbot/modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/chat.py -------------------------------------------------------------------------------- /userbot/modules/coolprofilepics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/coolprofilepics.py -------------------------------------------------------------------------------- /userbot/modules/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/covid.py -------------------------------------------------------------------------------- /userbot/modules/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/create.py -------------------------------------------------------------------------------- /userbot/modules/createstickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/createstickers.py -------------------------------------------------------------------------------- /userbot/modules/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/db.py -------------------------------------------------------------------------------- /userbot/modules/deezloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/deezloader.py -------------------------------------------------------------------------------- /userbot/modules/emojigames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/emojigames.py -------------------------------------------------------------------------------- /userbot/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/eval.py -------------------------------------------------------------------------------- /userbot/modules/fakegban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/fakegban.py -------------------------------------------------------------------------------- /userbot/modules/federasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/federasi.py -------------------------------------------------------------------------------- /userbot/modules/figlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/figlet.py -------------------------------------------------------------------------------- /userbot/modules/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/filemanager.py -------------------------------------------------------------------------------- /userbot/modules/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/filter.py -------------------------------------------------------------------------------- /userbot/modules/frog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/frog.py -------------------------------------------------------------------------------- /userbot/modules/gban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/gban.py -------------------------------------------------------------------------------- /userbot/modules/gcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/gcast.py -------------------------------------------------------------------------------- /userbot/modules/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/gdrive.py -------------------------------------------------------------------------------- /userbot/modules/gitcommit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/gitcommit.py -------------------------------------------------------------------------------- /userbot/modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/github.py -------------------------------------------------------------------------------- /userbot/modules/glitcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/glitcher.py -------------------------------------------------------------------------------- /userbot/modules/googlephotos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/googlephotos.py -------------------------------------------------------------------------------- /userbot/modules/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/gps.py -------------------------------------------------------------------------------- /userbot/modules/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/hash.py -------------------------------------------------------------------------------- /userbot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/help.py -------------------------------------------------------------------------------- /userbot/modules/hentai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/hentai.py -------------------------------------------------------------------------------- /userbot/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/heroku.py -------------------------------------------------------------------------------- /userbot/modules/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/id.py -------------------------------------------------------------------------------- /userbot/modules/imgmemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/imgmemes.py -------------------------------------------------------------------------------- /userbot/modules/kekuatan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/kekuatan.py -------------------------------------------------------------------------------- /userbot/modules/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lastfm.py -------------------------------------------------------------------------------- /userbot/modules/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lock.py -------------------------------------------------------------------------------- /userbot/modules/lord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lord.py -------------------------------------------------------------------------------- /userbot/modules/lordae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordae.py -------------------------------------------------------------------------------- /userbot/modules/lorddeteksi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lorddeteksi.py -------------------------------------------------------------------------------- /userbot/modules/lordfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordfun.py -------------------------------------------------------------------------------- /userbot/modules/lordgban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordgban.py -------------------------------------------------------------------------------- /userbot/modules/lordhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordhelper.py -------------------------------------------------------------------------------- /userbot/modules/lordhz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordhz.py -------------------------------------------------------------------------------- /userbot/modules/lordig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordig.py -------------------------------------------------------------------------------- /userbot/modules/lordimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordimp.py -------------------------------------------------------------------------------- /userbot/modules/lordmemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordmemes.py -------------------------------------------------------------------------------- /userbot/modules/lordmisc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordmisc.py -------------------------------------------------------------------------------- /userbot/modules/lordsong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordsong.py -------------------------------------------------------------------------------- /userbot/modules/lordtiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordtiny.py -------------------------------------------------------------------------------- /userbot/modules/lordtm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordtm.py -------------------------------------------------------------------------------- /userbot/modules/lordtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordtt.py -------------------------------------------------------------------------------- /userbot/modules/lordwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lordwc.py -------------------------------------------------------------------------------- /userbot/modules/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/lyrics.py -------------------------------------------------------------------------------- /userbot/modules/mega_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/mega_downloader.py -------------------------------------------------------------------------------- /userbot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/memes.py -------------------------------------------------------------------------------- /userbot/modules/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/memify.py -------------------------------------------------------------------------------- /userbot/modules/mentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/mentions.py -------------------------------------------------------------------------------- /userbot/modules/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/messages.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/nekobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/nekobot.py -------------------------------------------------------------------------------- /userbot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/notes.py -------------------------------------------------------------------------------- /userbot/modules/offalvingans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/offalvingans.py -------------------------------------------------------------------------------- /userbot/modules/oi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/oi.py -------------------------------------------------------------------------------- /userbot/modules/phreaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/phreaker.py -------------------------------------------------------------------------------- /userbot/modules/pms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/pms.py -------------------------------------------------------------------------------- /userbot/modules/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/profile.py -------------------------------------------------------------------------------- /userbot/modules/quotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/quotly.py -------------------------------------------------------------------------------- /userbot/modules/rastick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/rastick.py -------------------------------------------------------------------------------- /userbot/modules/resi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/resi.py -------------------------------------------------------------------------------- /userbot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/reverse.py -------------------------------------------------------------------------------- /userbot/modules/salam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/salam.py -------------------------------------------------------------------------------- /userbot/modules/sangmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sangmata.py -------------------------------------------------------------------------------- /userbot/modules/santet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/santet.py -------------------------------------------------------------------------------- /userbot/modules/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/scrapers.py -------------------------------------------------------------------------------- /userbot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sed.py -------------------------------------------------------------------------------- /userbot/modules/snips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/snips.py -------------------------------------------------------------------------------- /userbot/modules/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/spam.py -------------------------------------------------------------------------------- /userbot/modules/spotifynow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/spotifynow.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/.DS_Store -------------------------------------------------------------------------------- /userbot/modules/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/__init__.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/antiflood_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/blacklist_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/fban_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/fban_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/filter_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/filter_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gban_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/gban_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/globals.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gmute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/gmute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/google_drive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/google_drive_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/keep_read_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/keep_read_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/lydia_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/lydia_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/notes_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/pm_permit_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/pm_permit_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/snips_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/snips_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/spam_mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/spam_mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/warns_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/sql_helper/welcome_sql.py -------------------------------------------------------------------------------- /userbot/modules/ss_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/ss_video.py -------------------------------------------------------------------------------- /userbot/modules/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/stat.py -------------------------------------------------------------------------------- /userbot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/stickers.py -------------------------------------------------------------------------------- /userbot/modules/stickers_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/stickers_v2.py -------------------------------------------------------------------------------- /userbot/modules/system_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/system_stats.py -------------------------------------------------------------------------------- /userbot/modules/tag_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/tag_all.py -------------------------------------------------------------------------------- /userbot/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/telegraph.py -------------------------------------------------------------------------------- /userbot/modules/time_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/time_date.py -------------------------------------------------------------------------------- /userbot/modules/torrentsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/torrentsearch.py -------------------------------------------------------------------------------- /userbot/modules/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/transform.py -------------------------------------------------------------------------------- /userbot/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/updater.py -------------------------------------------------------------------------------- /userbot/modules/upload_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/upload_download.py -------------------------------------------------------------------------------- /userbot/modules/user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/user_id.py -------------------------------------------------------------------------------- /userbot/modules/waifu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/waifu.py -------------------------------------------------------------------------------- /userbot/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/wallpaper.py -------------------------------------------------------------------------------- /userbot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/weather.py -------------------------------------------------------------------------------- /userbot/modules/webupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/webupload.py -------------------------------------------------------------------------------- /userbot/modules/welcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/welcomes.py -------------------------------------------------------------------------------- /userbot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/whois.py -------------------------------------------------------------------------------- /userbot/modules/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/www.py -------------------------------------------------------------------------------- /userbot/modules/xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/xiaomi.py -------------------------------------------------------------------------------- /userbot/modules/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/modules/zipfile.py -------------------------------------------------------------------------------- /userbot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/__init__.py -------------------------------------------------------------------------------- /userbot/utils/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/chrome.py -------------------------------------------------------------------------------- /userbot/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/exceptions.py -------------------------------------------------------------------------------- /userbot/utils/funtions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/funtions.py -------------------------------------------------------------------------------- /userbot/utils/google_images_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/google_images_download.py -------------------------------------------------------------------------------- /userbot/utils/prettyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/prettyjson.py -------------------------------------------------------------------------------- /userbot/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/progress.py -------------------------------------------------------------------------------- /userbot/utils/styles/FontLord.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/styles/FontLord.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/MutantAcademyStyle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/styles/MutantAcademyStyle.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/ProductSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/styles/ProductSans-BoldItalic.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/styles/ProductSans-Light.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/styles/alice.txt -------------------------------------------------------------------------------- /userbot/utils/styles/lordfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/styles/lordfont.ttf -------------------------------------------------------------------------------- /userbot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/userbot/utils/tools.py -------------------------------------------------------------------------------- /varshelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/varshelper.txt -------------------------------------------------------------------------------- /windows_startup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zora24/Lord-Userbot/HEAD/windows_startup_script.py --------------------------------------------------------------------------------