•━𝐑𝐃𝐀⁽♔₎𝐏𝐇𝐏━•
Открыть в Telegram
محتوى القناة . ↜ قناه مختصه بتعليم برمجه البوتات والتطبيقات والمواقع ونشر بوتات تليجرام خدميه وتطبيقات مفيده ↝…🖤 المالك : رضوان الصلاحي مبرمج بوتات تلي @nninc .
Больше1 230
Подписчики
Нет данных24 часа
-57 дней
-2230 день
Архив постов
1 232
$Get = str_replace("كشف @","",$text);
if($text == "كشف @$Get"){
$GetUser = json_decode(file_get_contents("https://api.gamemodsm.xyz/GetUser?UserName=@$Get"));
$Name = $GetUser->Name;
$UserName = $GetUser->UserName;
$Id = $GetUser->Id;
$AccountStatus = $GetUser->AccountStatus;
$Bio = $GetUser->Bio;
$Error = $GetUser->Error;
$Ok = $GetUser->Ok;
if($Ok == "True"){
bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"- Name •⊱ $Name 🔠
- User Name •⊱ $UserName Ⓜ️
- Id •⊱ $Id 🆔
- Account Status •⊱ $AccountStatus 👁🗨
- Bio •⊱ $Bio 📝",
'reply_to_message_id'=>$message->message_id
]);
}
if($Ok == "False"){
bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"$Error",
'reply_to_message_id'=>$message->message_id
]);
}}
كود كشف ب لغة php1 232
انتضرو شرح عمل لوحه الادمن على ملفات البوتات بلغه php للاشخاص الي مايقدرون يسوون لوحه ادمن لملفاتهم
تفاعل ايموجي لتحفيزنا على النشر 😁
1 232
<?php
ob_start();
$token = "5941584370:AAG61z47Tfqo_qefmshJVagYldkuHIOk9tE"; # Token
define("API_KEY", $token);
echo "setWebhook ~> <a href=\"https://api.telegram.org/bot".API_KEY."/setwebhook?url=".$_SERVER['SERVER_NAME']."".$_SERVER['SCRIPT_NAME']."\">https://api.telegram.org/bot".API_KEY."/setwebhook?url=".$_SERVER['SERVER_NAME']."".$_SERVER['SCRIPT_NAME']."</a>";
function bot($method,$datas=[]){
$url = "https://api.telegram.org/bot".API_KEY."/".$method;
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_POSTFIELDS,$datas);
$res = curl_exec($ch);
if(curl_error($ch)){
var_dump(curl_error($ch));
}else{
return json_decode($res);
}}
$update = json_decode(file_get_contents('php://input'));
$message = $update->message;
$text = $message->text;
$chat_id = $message->chat->id;
$message_id = $message->message_id;
$user = $message->from->username;
$reply = $message->reply_to_message->from->username;
if($text == 'يوزر' and $reply){
bot('sendMessage',[
'chat_id'=>$chat_id,
'text'=>" يوزره هو : @" .$reply,
'reply_to_message_id'=>$message_id
]);
}
if($text == 'يوزر' and !$reply){
bot('sendMessage',[
'chat_id'=>$chat_id,
'text'=>" يوزرك هو : @" .$user,
'reply_to_message_id'=>$message_id
]);
}
كود كشف اليوزر كود تافه
كشف بالرد
@php9671 232
<?php
$name = $_GET['name'];
if($name){
$Mwald = " $name مواليد => ";
$mu = rand(0,22);
$muld = "20$mu";
Echo "انا اعتقد ان ".$Mwald.$muld;
}else{
Echo " ادخل الاسم من فضلك";
}
#كود_تخمين_مواليدك1 232
if($text == "هلا"){
bot( sendaudio ,[
chat_id =>$chat_id,
audio =>"رابط الصوت",
reply_to_message_id =>$message->message_id,
]);
}
كود تكدر تضيف بيه اصوات#1 232
$ck1 = "@py_php"; # معرف لقناة وي @
$ch2 = file_get_contents("https://api.telegram.org/bot".API_KEY."/getChatMember?chat_id=".$ck1."&user_id=".$from_id);
$getch2 = json_decode(file_get_contents("http://api.telegram.org/bot".API_KEY."/getChat?chat_id=".$ck1))->result;
$Namech2 = $getch2->title;
$getch2li = str_replace("@","",$ck1);
if($message && (strpos($ch2,'"status":"left"') or strpos($ch2,'"Bad Request: USER_ID_INVALID"') or strpos($ch2,'"status":"kicked"'))!== false){
bot('sendMessage', [
'chat_id'=>$chat_id,
'text'=>'⚠️ : عذراً عزيزي
✔:يجب عليك الاشتراك في قناة المطور أولا
✔:اشترك ثم ارسل /start
— — — — — — — — —
'.$ck1,
'reply_markup'=>json_encode([
'inline_keyboard'=>[
[['text'=>$Namech2,'url'=>"https://t.me/$getch2li"]],
]])
]);return false;}
كود اشتراك اجباري ب لغة php
#code1 232
كود السكرين شوت داخل المجموعات
import telebot #المكاتب
import time #المكاتب
bot = telebot.Telebot('التوكن')
@bot.message_handler(commands=['screenshot'])
def screenshot_group(message):
# Get information about the group
group_chat_id = message.chat.id
group_title = message.chat.title
# Get the list of users in the group
group_members_list = bot.get_chat_members_count(chat_id=message.chat.id)
group_member_info = bot.get_chat_members(chat_id=message.chat.id, offset=0, limit=group_members_list)
# Take screenshot
image_caption = 'Group screenshot for ' + group_title
current_time = time.strftime("%Y-%m-%d-%H-%M-%S", time.gmtime())
screenshot_name = 'screenshot_' + current_time + '.jpg'
screenshot_file = open(screenshot_name, 'wb')
member_index = 0
for group_member in group_member_info:
# Get the photo of each user in the group
if group_member.user.photo:
photo = bot.get_file(group_member.user.photo.small_file_id)
photo_name = 'user_' + str(member_index) + '.jpg'
photo_file = open(photo_name, 'wb')
photo_file.write(bot.download_file(photo.file_path))
photo_file.close()
member_index += 1
# Take screenshot
screenshot_file.write(bot.send_photo(chat_id=group_chat_id, photo=screenshot_name, caption=image_caption))
screenshot_file.close()
# Delete images
for i in range(member_index):
image_name = 'user_' + str(i) + '.jpg'
os.remove(image_name)
bot.polling(none_stop=True)
كود سكرين شوت ب لغة البايثون1 232
السلام عليكم كيف الحال
من يعرف ينصب تشكير يوزرات للحساب يراسلني ويطلب الي يريد
@nninc
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
