Useful Coders | IT News
74 subscribers
58 photos
3 videos
92 files
36 links
Download 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
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 🧡

🌐 Tarqatildi: @UsefulCoders
Please open Telegram to view this post
VIEW IN TELEGRAM
👍21
Forwarded from #Blog (𖣘𝄄꯭꯭𝄄꯭۰۪۫B۪۫𝄄꯭꯭𝄄꯭۰۪۫E۪۫𝄄꯭꯭𝄄꯭۰۪۫X۪۫𝄄꯭꯭𝄄꯭۰۪۫R۪۫𝄄꯭꯭𝄄꯭۰۪۫U𝄄꯭꯭𝄄۰۪۫Z𖣘 𝚅𝚊𝚕𝚒𝚡𝚘'𝚓𝚊𝚢𝚎𝚟)
YangiVertualBot.zip
41.1 KB
🤖@YangiVertualBot kodi
➡️Dasturchi: @BestProger ,@uzinfo_01,➡️@python_700
➡️Manba: @WonderfulCoders and
➡️@PYTHON_700 🇺🇿

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⚠️
Please open Telegram to view this post
VIEW IN TELEGRAM
🇺🇸 ENG - 🇺🇿 UZ

📁 TARJIMON API
http://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=uz&dt=t&q=hello


🤴10 TA REAKSIYA BO'LSA ISHLATISH KODINI TASHLAYMAN🌐
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥21👍1
http://t.me/TgWebCoderBot/telegram

🔥 Telegram Lite
🚀 Dasturchi: @TgWebCoder
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2
🚀 Kodini tashemi #comment
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
🔥 @TezMakerBot'ning eski versiyasi
🔥 Ba'zilarda ham yoq ekan!
📊 Manba: Ichida

👉 @UsefulCoders
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
Live stream started
Forwarded from Vision UZ (ℝ𝔸𝕏𝕄𝔸𝕋𝕌𝕃𝕃𝔸𝕐𝔼𝕍 </>)
@eVazifa_bot(@space_coder_team).php
100.8 KB
@eVazifa_Bot kodi:

🔷 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
🚀 Nomidan bildila.
💬 Commentda so'rashibdi!
👍 Maker botga ham tushadi!
📄 Asosiy manba: No'malum
🌟 Manba: @UsefulCoders
👉 Tahrirladi: @TgWebCoder
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3
Hamsterkombat.php
23.7 KB
🐹 Hamster kombat Savdo bot kodi 🧨
👍3🔥1
TezMaker.zip
30.3 KB
⭐️ @TezMakerBot kodi
🔥 Hech qayerda yoq

⚡️ Yangilanishlar:


Kabiner dizayn o'zgardi!
Promokodga o'zgartirish kiritildi!
Yangi bo'lim qo'shildi!
Bot ochish mukammallashtirildi!
Va boshqa imkoniyatlar!

💬 Manba: @UsefulCoders
👥 Dasturchilar: @TgWebCoder
Please open Telegram to view this post
VIEW IN TELEGRAM
2🤩2👍1🔥1
$update = json_decode(file_get_contents('php://input'));
$message = $update->message;
$cid = $message->chat->id;
$text = $message->text;


$webapp = json_encode([
    'inline_keyboard'=>[         
[['text'=>" Kanal",'web_app'=>['url'=>"https://t.me/UsefulCoders"]]],
]
]);   

if($text == "/start"){
    bot('SendMessage',[
    'chat_id'=>$cid,
    'text'=>"😊 Assalomu assalomu",
    'reply_markup'=>$webapp,
]);
}


TUGMA (web_app)
#function #bot #UsefulCoders
©️ Manba: @UsefulCoders
Please open Telegram to view this post
VIEW IN TELEGRAM
Assalomu alaykum va rohmatullohi va barokatuh!

Juma Muborak ☪️
👍2🔥2