├── .gitignore ├── AI_bot ├── .gitignore ├── Pipfile ├── Pipfile.lock ├── bot.py ├── chatbot_model.h5 ├── dars.py ├── datas │ ├── classses.pkl │ ├── intents.json │ └── words.pkl ├── firstbot │ ├── bot.py │ └── reqs.txt └── main.py ├── NFTMarket_bot ├── __pycache__ │ └── keyboards.cpython-310.pyc ├── keyboards.py ├── main.py └── web │ ├── images │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── cart.png │ ├── logo.jpg │ └── logo.png │ └── index.html ├── README.md ├── chatbot └── chat_bot.php ├── downloaderbot ├── README.md ├── app.php ├── config.php ├── files │ ├── AQADhrgxGxE4IFB-.jpg │ ├── AQADpboxG30rIFB-.jpg │ ├── AgAD7Q0AAhE4IFA.tgs │ ├── AgAD7g0AAhE4IFA.jpg │ └── AgADGgADwDZPEw.tgs ├── funcs.php ├── icon.png ├── index.php ├── log.json └── rb.php ├── examples_from_less_telegram_bot_api ├── demo.php └── readme.md ├── gameBot ├── README.md ├── app.php ├── config.php ├── funcs.php ├── games │ ├── cards │ │ ├── img │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── fon.jpg │ │ │ └── quis.png │ │ ├── index.php │ │ ├── main.js │ │ └── style.css │ └── omadshou │ │ ├── images │ │ ├── arrow.png │ │ ├── fon.mp3 │ │ ├── game.mp3 │ │ └── wheel.png │ │ ├── index.php │ │ ├── script.js │ │ └── styles.css ├── icon.png ├── index.php ├── log.json └── rb.php ├── greenMarket ├── README.md ├── app.php ├── cmhosting_less.sql ├── config.php ├── funcs.php ├── icon.png ├── index.php ├── log.json ├── rb.php └── store │ ├── api.php │ ├── img │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── fon.jpg │ ├── news1.jpg │ ├── news2.jpg │ ├── news3.jpg │ ├── pay.jpg │ ├── pay.png │ └── quis.png │ ├── index.php │ ├── log.json │ └── store_log.json ├── im_givebot ├── README.md ├── app.php ├── config.php ├── funcs.php ├── icon.png ├── index.php ├── log.json └── rb.php ├── infomir_tvbot ├── README.md ├── app.php ├── config.php ├── funcs.php ├── icon.png ├── index.php └── rb.php ├── inlinebot ├── app.php ├── config.php ├── funcs.php ├── icon.png ├── index.php ├── log.json └── rb.php ├── manager_bot ├── README.md ├── app.php ├── config.php ├── datas │ └── allow_679143250_679143250.temp ├── db.sql ├── funcs.php ├── icon.png ├── index.php ├── log.json └── rb.php ├── multelangbot ├── app.php ├── config.php ├── datas │ └── user_lang_679143250.temp ├── funcs.php ├── icon.png ├── index.php ├── locales │ ├── words_en.ini │ ├── words_fr.ini │ ├── words_ru.ini │ └── words_uz.ini ├── log.json └── rb.php ├── multibot ├── node_bot │ ├── index.js │ ├── package-lock.json │ └── package.json ├── php_bot │ └── bot.php └── python_bot │ └── bot.py ├── multimenu_bot ├── app.php ├── bot.php └── log.json ├── new_template ├── README.md ├── app.php ├── config.php ├── funcs.php ├── icon.png ├── index.php └── rb.php ├── old_version ├── README.md ├── app.php ├── config.php ├── funcs.php ├── index.php ├── monitor.php └── rb.php ├── referal_bot ├── README.md ├── app.php ├── config.php ├── funcs.php ├── icon.png ├── index.php ├── log.json └── rb.php ├── sdfsdfs.txt └── youtubebot ├── app.php ├── config.php ├── funcs.php ├── icon.png ├── index.php ├── rb.php └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AI_bot/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ -------------------------------------------------------------------------------- /AI_bot/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/Pipfile -------------------------------------------------------------------------------- /AI_bot/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/Pipfile.lock -------------------------------------------------------------------------------- /AI_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/bot.py -------------------------------------------------------------------------------- /AI_bot/chatbot_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/chatbot_model.h5 -------------------------------------------------------------------------------- /AI_bot/dars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/dars.py -------------------------------------------------------------------------------- /AI_bot/datas/classses.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/datas/classses.pkl -------------------------------------------------------------------------------- /AI_bot/datas/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/datas/intents.json -------------------------------------------------------------------------------- /AI_bot/datas/words.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/datas/words.pkl -------------------------------------------------------------------------------- /AI_bot/firstbot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/firstbot/bot.py -------------------------------------------------------------------------------- /AI_bot/firstbot/reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/firstbot/reqs.txt -------------------------------------------------------------------------------- /AI_bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/AI_bot/main.py -------------------------------------------------------------------------------- /NFTMarket_bot/__pycache__/keyboards.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/__pycache__/keyboards.cpython-310.pyc -------------------------------------------------------------------------------- /NFTMarket_bot/keyboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/keyboards.py -------------------------------------------------------------------------------- /NFTMarket_bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/main.py -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/1.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/10.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/11.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/12.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/2.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/3.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/4.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/5.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/6.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/7.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/8.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/9.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/cart.png -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/logo.jpg -------------------------------------------------------------------------------- /NFTMarket_bot/web/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/images/logo.png -------------------------------------------------------------------------------- /NFTMarket_bot/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/NFTMarket_bot/web/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PHP templates for telegram bots 2 | -------------------------------------------------------------------------------- /chatbot/chat_bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/chatbot/chat_bot.php -------------------------------------------------------------------------------- /downloaderbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/README.md -------------------------------------------------------------------------------- /downloaderbot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/app.php -------------------------------------------------------------------------------- /downloaderbot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/config.php -------------------------------------------------------------------------------- /downloaderbot/files/AQADhrgxGxE4IFB-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/files/AQADhrgxGxE4IFB-.jpg -------------------------------------------------------------------------------- /downloaderbot/files/AQADpboxG30rIFB-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/files/AQADpboxG30rIFB-.jpg -------------------------------------------------------------------------------- /downloaderbot/files/AgAD7Q0AAhE4IFA.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/files/AgAD7Q0AAhE4IFA.tgs -------------------------------------------------------------------------------- /downloaderbot/files/AgAD7g0AAhE4IFA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/files/AgAD7g0AAhE4IFA.jpg -------------------------------------------------------------------------------- /downloaderbot/files/AgADGgADwDZPEw.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/files/AgADGgADwDZPEw.tgs -------------------------------------------------------------------------------- /downloaderbot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/funcs.php -------------------------------------------------------------------------------- /downloaderbot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/icon.png -------------------------------------------------------------------------------- /downloaderbot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/index.php -------------------------------------------------------------------------------- /downloaderbot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/log.json -------------------------------------------------------------------------------- /downloaderbot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/downloaderbot/rb.php -------------------------------------------------------------------------------- /examples_from_less_telegram_bot_api/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/examples_from_less_telegram_bot_api/demo.php -------------------------------------------------------------------------------- /examples_from_less_telegram_bot_api/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gameBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/README.md -------------------------------------------------------------------------------- /gameBot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/app.php -------------------------------------------------------------------------------- /gameBot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/config.php -------------------------------------------------------------------------------- /gameBot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/funcs.php -------------------------------------------------------------------------------- /gameBot/games/cards/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/1.png -------------------------------------------------------------------------------- /gameBot/games/cards/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/2.png -------------------------------------------------------------------------------- /gameBot/games/cards/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/3.png -------------------------------------------------------------------------------- /gameBot/games/cards/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/4.png -------------------------------------------------------------------------------- /gameBot/games/cards/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/5.png -------------------------------------------------------------------------------- /gameBot/games/cards/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/6.png -------------------------------------------------------------------------------- /gameBot/games/cards/img/fon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/fon.jpg -------------------------------------------------------------------------------- /gameBot/games/cards/img/quis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/img/quis.png -------------------------------------------------------------------------------- /gameBot/games/cards/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/index.php -------------------------------------------------------------------------------- /gameBot/games/cards/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gameBot/games/cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/cards/style.css -------------------------------------------------------------------------------- /gameBot/games/omadshou/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/images/arrow.png -------------------------------------------------------------------------------- /gameBot/games/omadshou/images/fon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/images/fon.mp3 -------------------------------------------------------------------------------- /gameBot/games/omadshou/images/game.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/images/game.mp3 -------------------------------------------------------------------------------- /gameBot/games/omadshou/images/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/images/wheel.png -------------------------------------------------------------------------------- /gameBot/games/omadshou/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/index.php -------------------------------------------------------------------------------- /gameBot/games/omadshou/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/script.js -------------------------------------------------------------------------------- /gameBot/games/omadshou/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/games/omadshou/styles.css -------------------------------------------------------------------------------- /gameBot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/icon.png -------------------------------------------------------------------------------- /gameBot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/index.php -------------------------------------------------------------------------------- /gameBot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/log.json -------------------------------------------------------------------------------- /gameBot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/gameBot/rb.php -------------------------------------------------------------------------------- /greenMarket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/README.md -------------------------------------------------------------------------------- /greenMarket/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/app.php -------------------------------------------------------------------------------- /greenMarket/cmhosting_less.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/cmhosting_less.sql -------------------------------------------------------------------------------- /greenMarket/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/config.php -------------------------------------------------------------------------------- /greenMarket/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/funcs.php -------------------------------------------------------------------------------- /greenMarket/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/icon.png -------------------------------------------------------------------------------- /greenMarket/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/index.php -------------------------------------------------------------------------------- /greenMarket/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/log.json -------------------------------------------------------------------------------- /greenMarket/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/rb.php -------------------------------------------------------------------------------- /greenMarket/store/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/api.php -------------------------------------------------------------------------------- /greenMarket/store/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/1.png -------------------------------------------------------------------------------- /greenMarket/store/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/2.png -------------------------------------------------------------------------------- /greenMarket/store/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/3.png -------------------------------------------------------------------------------- /greenMarket/store/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/4.png -------------------------------------------------------------------------------- /greenMarket/store/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/5.png -------------------------------------------------------------------------------- /greenMarket/store/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/6.png -------------------------------------------------------------------------------- /greenMarket/store/img/fon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/fon.jpg -------------------------------------------------------------------------------- /greenMarket/store/img/news1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/news1.jpg -------------------------------------------------------------------------------- /greenMarket/store/img/news2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/news2.jpg -------------------------------------------------------------------------------- /greenMarket/store/img/news3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/news3.jpg -------------------------------------------------------------------------------- /greenMarket/store/img/pay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/pay.jpg -------------------------------------------------------------------------------- /greenMarket/store/img/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/pay.png -------------------------------------------------------------------------------- /greenMarket/store/img/quis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/img/quis.png -------------------------------------------------------------------------------- /greenMarket/store/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/index.php -------------------------------------------------------------------------------- /greenMarket/store/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/log.json -------------------------------------------------------------------------------- /greenMarket/store/store_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/greenMarket/store/store_log.json -------------------------------------------------------------------------------- /im_givebot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/README.md -------------------------------------------------------------------------------- /im_givebot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/app.php -------------------------------------------------------------------------------- /im_givebot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/config.php -------------------------------------------------------------------------------- /im_givebot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/funcs.php -------------------------------------------------------------------------------- /im_givebot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/icon.png -------------------------------------------------------------------------------- /im_givebot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/index.php -------------------------------------------------------------------------------- /im_givebot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/log.json -------------------------------------------------------------------------------- /im_givebot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/im_givebot/rb.php -------------------------------------------------------------------------------- /infomir_tvbot/README.md: -------------------------------------------------------------------------------- 1 | # Pbuni realezatsiya qilamiz, hozircha toxtatib qoydim 2 | -------------------------------------------------------------------------------- /infomir_tvbot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/infomir_tvbot/app.php -------------------------------------------------------------------------------- /infomir_tvbot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/infomir_tvbot/config.php -------------------------------------------------------------------------------- /infomir_tvbot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/infomir_tvbot/funcs.php -------------------------------------------------------------------------------- /infomir_tvbot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/infomir_tvbot/icon.png -------------------------------------------------------------------------------- /infomir_tvbot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/infomir_tvbot/index.php -------------------------------------------------------------------------------- /infomir_tvbot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/infomir_tvbot/rb.php -------------------------------------------------------------------------------- /inlinebot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/app.php -------------------------------------------------------------------------------- /inlinebot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/config.php -------------------------------------------------------------------------------- /inlinebot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/funcs.php -------------------------------------------------------------------------------- /inlinebot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/icon.png -------------------------------------------------------------------------------- /inlinebot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/index.php -------------------------------------------------------------------------------- /inlinebot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/log.json -------------------------------------------------------------------------------- /inlinebot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/inlinebot/rb.php -------------------------------------------------------------------------------- /manager_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/README.md -------------------------------------------------------------------------------- /manager_bot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/app.php -------------------------------------------------------------------------------- /manager_bot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/config.php -------------------------------------------------------------------------------- /manager_bot/datas/allow_679143250_679143250.temp: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /manager_bot/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/db.sql -------------------------------------------------------------------------------- /manager_bot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/funcs.php -------------------------------------------------------------------------------- /manager_bot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/icon.png -------------------------------------------------------------------------------- /manager_bot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/index.php -------------------------------------------------------------------------------- /manager_bot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/log.json -------------------------------------------------------------------------------- /manager_bot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/manager_bot/rb.php -------------------------------------------------------------------------------- /multelangbot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/app.php -------------------------------------------------------------------------------- /multelangbot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/config.php -------------------------------------------------------------------------------- /multelangbot/datas/user_lang_679143250.temp: -------------------------------------------------------------------------------- 1 | fr -------------------------------------------------------------------------------- /multelangbot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/funcs.php -------------------------------------------------------------------------------- /multelangbot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/icon.png -------------------------------------------------------------------------------- /multelangbot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/index.php -------------------------------------------------------------------------------- /multelangbot/locales/words_en.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/locales/words_en.ini -------------------------------------------------------------------------------- /multelangbot/locales/words_fr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/locales/words_fr.ini -------------------------------------------------------------------------------- /multelangbot/locales/words_ru.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/locales/words_ru.ini -------------------------------------------------------------------------------- /multelangbot/locales/words_uz.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/locales/words_uz.ini -------------------------------------------------------------------------------- /multelangbot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/log.json -------------------------------------------------------------------------------- /multelangbot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multelangbot/rb.php -------------------------------------------------------------------------------- /multibot/node_bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multibot/node_bot/index.js -------------------------------------------------------------------------------- /multibot/node_bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multibot/node_bot/package-lock.json -------------------------------------------------------------------------------- /multibot/node_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multibot/node_bot/package.json -------------------------------------------------------------------------------- /multibot/php_bot/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multibot/php_bot/bot.php -------------------------------------------------------------------------------- /multibot/python_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multibot/python_bot/bot.py -------------------------------------------------------------------------------- /multimenu_bot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multimenu_bot/app.php -------------------------------------------------------------------------------- /multimenu_bot/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multimenu_bot/bot.php -------------------------------------------------------------------------------- /multimenu_bot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/multimenu_bot/log.json -------------------------------------------------------------------------------- /new_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/README.md -------------------------------------------------------------------------------- /new_template/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/app.php -------------------------------------------------------------------------------- /new_template/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/config.php -------------------------------------------------------------------------------- /new_template/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/funcs.php -------------------------------------------------------------------------------- /new_template/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/icon.png -------------------------------------------------------------------------------- /new_template/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/index.php -------------------------------------------------------------------------------- /new_template/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/new_template/rb.php -------------------------------------------------------------------------------- /old_version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/README.md -------------------------------------------------------------------------------- /old_version/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/app.php -------------------------------------------------------------------------------- /old_version/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/config.php -------------------------------------------------------------------------------- /old_version/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/funcs.php -------------------------------------------------------------------------------- /old_version/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/index.php -------------------------------------------------------------------------------- /old_version/monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/monitor.php -------------------------------------------------------------------------------- /old_version/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/old_version/rb.php -------------------------------------------------------------------------------- /referal_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/README.md -------------------------------------------------------------------------------- /referal_bot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/app.php -------------------------------------------------------------------------------- /referal_bot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/config.php -------------------------------------------------------------------------------- /referal_bot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/funcs.php -------------------------------------------------------------------------------- /referal_bot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/icon.png -------------------------------------------------------------------------------- /referal_bot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/index.php -------------------------------------------------------------------------------- /referal_bot/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/log.json -------------------------------------------------------------------------------- /referal_bot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/referal_bot/rb.php -------------------------------------------------------------------------------- /sdfsdfs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /youtubebot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/app.php -------------------------------------------------------------------------------- /youtubebot/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/config.php -------------------------------------------------------------------------------- /youtubebot/funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/funcs.php -------------------------------------------------------------------------------- /youtubebot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/icon.png -------------------------------------------------------------------------------- /youtubebot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/index.php -------------------------------------------------------------------------------- /youtubebot/rb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/rb.php -------------------------------------------------------------------------------- /youtubebot/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaidAbbos96/tme_bot_php_template/HEAD/youtubebot/test.php --------------------------------------------------------------------------------