P11125446739860030116970770 F/MPlease open Telegram to view this post
VIEW IN TELEGRAM
π5
α΄Κα΄κ°α΄ α΄α΄Κα΄Κα΄α΄ α΄α΄’Ιͺα΄’Κα΄Κ π
Please open Telegram to view this post
VIEW IN TELEGRAM
π3
Please open Telegram to view this post
VIEW IN TELEGRAM
Salom, Fayzullo - Portfilio kodini tarqatamizmi
Pavel Durov OΚ»zbekistonda πΊπΏ
Please open Telegram to view this post
VIEW IN TELEGRAM
πΊπΏOβzbekistonda birinchi marotaba Telegram-bank ochiladi va TON kriptovalyutasi qonuniy boβladi
Habar berishlaricha Telegram asoschisi Pavel Durov Ton boβyicha savollarga nuqta qoβyish uchun va qonuniy qilish uchun Oβzbekistonga kelgan, undan tashqari Telegram Wallet niham qonuniylashtirish uchun
Tez orada TON Oβzbekistondagi birinchi qonuniy kriptovalyuta boβlishi mumkinπ€«
β‘οΈ Kanalimizga obuna boβling va yangililkarni kuzatib boringπ
Telegram | YouTube
Habar berishlaricha Telegram asoschisi Pavel Durov Ton boβyicha savollarga nuqta qoβyish uchun va qonuniy qilish uchun Oβzbekistonga kelgan, undan tashqari Telegram Wallet niham qonuniylashtirish uchun
Tez orada TON Oβzbekistondagi birinchi qonuniy kriptovalyuta boβlishi mumkin
Telegram | YouTube
Please open Telegram to view this post
VIEW IN TELEGRAM
portfilio.zip
2.4 KB
Fayzullo-Portfilio kodi β
β‘οΈ Dasturchilar uchun maxsus.
π¬ Manba: @UsefulCoders
π¨βπ» Dasturchi: @TgWebCoder
Please open Telegram to view this post
VIEW IN TELEGRAM
function joinchannel($uid){
$kanal1 = bot("getChatMember",[
"chat_id"=>"@UsefulCoders",
"user_id"=>$uid,
])->result->status;
$kanal2= bot("getChatMember",[
"chat_id"=>"@UsefulCodes",
"user_id"=>$uid,
])->result->status;
$gurux = bot("getChatMember",[
"chat_id"=>"@UsefulCoders",
"user_id"=>$uid,
])->result->status;
if(($kanal1=="creator" or $kanal1=="administrator" or $kanal1=="member") and ($kanal2=="creator" or $kanal2=="administrator" or $kanal2=="member") and ($gurux=="creator" or $gurux=="administrator" or $gurux=="member")){
return true;
}else{
bot("sendMessage",[
"chat_id"=>$uid,
"text"=>"<b>Botdan foydalanish uchun quydagi kanallarga obuna bo'ling! </b>",
"parse_mode"=>"html",
"disable_web_page_preview"=>true,
"reply_markup"=>json_encode([
"inline_keyboard"=>[
[["text"=>"Kanal","url"=>"https://t.me/UsefulCoders"]],[["text"=>"Kanal","url"=>"https://t.me/UsefulCoders"]],
[["text"=>"Kanal","url"=>"https://t.me/UsefulCoders"]],
]
]),
]);
exit();
}
}Majburiy obuna #funksiya
Please open Telegram to view this post
VIEW IN TELEGRAM
π2β‘1
Forwarded from #Blog (π£πκ―κ―πκ―Ϋ°ΫͺΫ«BΫͺΫ«πκ―κ―πκ―Ϋ°ΫͺΫ«EΫͺΫ«πκ―κ―πκ―Ϋ°ΫͺΫ«XΫͺΫ«πκ―κ―πκ―Ϋ°ΫͺΫ«RΫͺΫ«πκ―κ―πκ―Ϋ°ΫͺΫ«Uπκ―κ―πΫ°ΫͺΫ«Zπ£ π
ππππ‘π'πππ’ππ)
YangiVertualBot.zip
41.1 KB
Reaksiya bosamiz.
Please open Telegram to view this post
VIEW IN TELEGRAM
β‘2π2π2
Forwarded from Humo Hacker | β
bot2.php
160.9 KB
@WorldSeenBot π kodi π
Premium.zip ichidagi bot.php fayli ochrb tashab buni qoyilaπ§¬
β‘οΈ Manba: @WonderfulCoders
β‘οΈ @PYTHON_700 va
Kanallaring bosa tarqatib qoyilaβ ββ οΈ
Premium.zip ichidagi bot.php fayli ochrb tashab buni qoyilaπ§¬
Kanallaring bosa tarqatib qoyilaβ ββ οΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
http://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=uz&dt=t&q=hello
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯2β‘1π1
Please open Telegram to view this post
VIEW IN TELEGRAM
Telegram Lite.zip
3.2 KB
Telegram Lite kodi β
β‘οΈ Dasturchilar uchun maxsus.
π¬ Manba: @UsefulCoders
π¨βπ» Dasturchi: @TgWebCoder
β Manbasiz tarqalmasin!
Please open Telegram to view this post
VIEW IN TELEGRAM
π1π₯1
200ta bo'lsak @TezMakerBot kodini tasheman β
Please open Telegram to view this post
VIEW IN TELEGRAM
π4
TezMakerOld.zip
31.5 KB
Please open Telegram to view this post
VIEW IN TELEGRAM
π3π1π1
<?php
$apiToken = "YOUR_TELEGRAM_BOT_TOKEN";
$channelUsername = "@YOUR_CHANNEL_USERNAME";
function editMessage($chatId, $messageId, $newText) {
global $apiToken;
$url = "https://api.telegram.org/bot$apiToken/editMessageText";
$data = [
'chat_id' => $chatId,
'message_id' => $messageId,
'text' => $newText
];
$options = [
'http' => [
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data),
],
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
die('Error');
}
return $result;
}
// Webhook orqali yangi postlar kelib tushganida
$content = file_get_contents("php://input");
$update = json_decode($content, true);
if (isset($update["channel_post"])) {
$post = $update["channel_post"];
$chatId = $post["chat"]["id"];
$messageId = $post["message_id"];
if (isset($post["text"])) {
$newText = $post["text"] . "\n\n" . $channelUsername;
editMessage($chatId, $messageId, $newText);
} elseif (isset($post["caption"])) {
$newCaption = $post["caption"] . "\n\n" . $channelUsername;
editMessage($chatId, $messageId, $newCaption);
}
}
?>
Bu bot kodi kanalingizga yangi post qo'shilganda avtomatik ravishda postning matni yoki sarlavhasiga kanal username ni qo'shadi.
@UsefulCoders
Forwarded from Vision UZ (βπΈπππΈπππππΈππΌπ </>)
@eVazifa_bot(@space_coder_team).php
100.8 KB
β
@eVazifa_Bot kodi:
π· Versiya : 1.1v
π» Dasturlash Tili : php
π₯ Dasturchi: @opscoder
π₯ Manba : @space_coder_team
π₯ Kanal : @space_coder_team
π Kodni tarqatib tashlashingiz mumkun ruhsat berildi.
π· Versiya : 1.1v
π» Dasturlash Tili : php
π² Vazifasi: foydalanuvchilar kanalga kirib har xil vazifalar bajaradi va pul yig'ishadi to'plagan pullari evaziga telegram kanal yoki guruhlari uchun obunachi yig'ib olishlari mumkun
π₯ Dasturchi: @opscoder
π₯ Manba : @space_coder_team
π₯ Kanal : @space_coder_team
π Kodni tarqatib tashlashingiz mumkun ruhsat berildi.
SeenSMM.php
137.2 KB
Please open Telegram to view this post
VIEW IN TELEGRAM
π3