Useful Coders | IT News
74 subscribers
58 photos
3 videos
92 files
36 links
Download 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
πŸ‘2⚑1
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
πŸ”₯2⚑1πŸ‘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
πŸ”₯ Proyekt yaxshi ketyapti
πŸš€ Tez orada e'lon qilamiz
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘2
😊 Pullik reaksiyani bosib ko'ramiz
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘4❀3πŸ”₯1
πŸ”₯ Proyektim tugadi!
βœ”οΈ Tez orada to'liq taqdim etiladi!
❓ Yana nima qo'shsam bo'ladi!

πŸ‘‰ Kanal: @UsefulCoders
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM