𝐂𝐨𝐝𝐞𝐕𝐲𝐱
8.57K subscribers
85 photos
3 videos
29 files
45 links
𝐋𝐚𝐬𝐧𝐚 𝐀𝐥𝐀𝐰𝐚𝐥 𝐋𝐚𝐤𝐢𝐧𝐧𝐚 𝐀𝐥𝐀𝐟𝐝𝐡𝐚𝐥

- 𝐔𝐬𝐞𝐫𝐂𝐡𝐚𝐧𝐧𝐞𝐥 @CodeVyx
- 𝐔𝐬𝐞𝐫 𝐎𝐰𝐧𝐞𝐫 @priknm
Download Telegram
اعطوني اقتراحات لبوتات او ادوات او مواقع 👇🔥
- @Mijkebot
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4🔥2
تفاعل ⭐️☹️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🥰2🍓2😭2🦄21🔥1👏1🤯1🎃1
ايقاف بوت الاستضافه 🚫

السبب:

بوت الاستضافه فيه مشكله ان البتاعه الي بتفحص الملفات بتحظر اي حد بيرفع من غير متشوف هل هو رافع فيروسات دي حظرتني انا و انا الادمن بتاعها 😂

هيرجع؟
ان شاء الله (حليت مشكله ظهرت مشكله تانيه اي النحس ده ☹️)
Please open Telegram to view this post
VIEW IN TELEGRAM
😁4😭43😱2🎃2👍1🎄1
مسابقه علي الف مهديون 😊⭐️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2🔥1😭1
1️⃣2️⃣3️⃣


تفاعلكم
🔥
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5🏆2🔥1🥰1
اول مايكي @Mijkebot
👍2🔥1🏆1
Forwarded from 「"𝐌𝐮³𝐭𝐚𝐳𝐞𝐥 𝐁𝐚𝐬𝐡𝐚 𝐢𝐋 𝐇𝐢𝐬𝐭𝐨𝐫𝐲 お"」
ثقه
👍2🔥1
نكمل ؟
👍2🔥1
This media is not supported in the widget
VIEW IN TELEGRAM
👍8🤩21🔥1
صباح الخير 🌤
5👍1
جاهزين يخواتي 😍؟
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥3😎2🥰1💋1
يوزر - @Chufflebot - 🟠
😱6👍5🔥43👌3💋2🥰1
𝐂𝐨𝐝𝐞𝐕𝐲𝐱
يوزر - @Chufflebot - 🟠
ده تفاعل 🙈
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥4👍3🏆3❤‍🔥22🥰2👏2😎2😁1🤯1
انا اكتشفت انكو بتوع مصالح كلكم دخلتو البوت و محدش تفاعل 🙈
Please open Telegram to view this post
VIEW IN TELEGRAM
9🔥12😁6❤‍🔥4🥰4👏32👍1👌1
مسا مسا 😂
Please open Telegram to view this post
VIEW IN TELEGRAM
5👍2🔥2🥰2😁2
الي عايزني مشرف عندو يبعت 🔥

@A_1_1_T
محتواي برمجة مواقع و بوتات 😊⭐️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5
𝐂𝐨𝐝𝐞𝐕𝐲𝐱
يوزر - @Chufflebot - 🟠
بالمناسبه دي مش اخر تطوير للاستضافه في تحديثات تانيه هنحل كل المشاكل باذن الله وهيكون جامد🔸🙈
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥73🤯2❤‍🔥1👍1😱1👌1💋1
😘..
8💋3👍2🔥1🤯1
import telebot
from telebot import types
#امسح فقط كلمه توكن الي داخل علامه الاقتباس وخلي توكن بوتك وشغل لملف وروح لبوتك تحكم هناك
token = "توكن"
ttxxxn = telebot.TeleBot(token)
d = {}

def hso(c, u):
if c not in d:
d[c] = ""
if u.data == "=":
try:
d[c] = str(eval(d[c]))
except:
d[c] = "خطأ"
elif u.data == "C":
d[c] = "0"
else:
if d[c] == "0":
d[c] = u.data
else:
d[c] += u.data
k = gu()
ttxxxn.edit_message_text(chat_id=u.message.chat.id, message_id=u.message.message_id, text=d[c], reply_markup=k)

def gu():
k = types.InlineKeyboardMarkup()
b1 = [types.InlineKeyboardButton(str(i), callback_data=str(i)) for i in range(1, 4)]
b2 = [types.InlineKeyboardButton(str(i), callback_data=str(i)) for i in range(4, 7)]
b3 = [types.InlineKeyboardButton(str(i), callback_data=str(i)) for i in range(7, 10)]
b4 = [types.InlineKeyboardButton("0", callback_data="0")]
b5 = [types.InlineKeyboardButton("+", callback_data="+"),
types.InlineKeyboardButton("-", callback_data="-"),
types.InlineKeyboardButton("*", callback_data="*"),
types.InlineKeyboardButton("/", callback_data="/")]
b6 = [types.InlineKeyboardButton("=", callback_data="="), types.InlineKeyboardButton("C", callback_data="C")]
k.row(*b1)
k.row(*b2)
k.row(*b3)
k.row(*b4)
k.row(*b5)
k.row(*b6)
my = types.InlineKeyboardButton(text='مبرمج البوت', url="https://t.me/A_1_1_T")
k.add(my)
return k

@ttxxxn.message_handler(commands=["start"])
def start_message(m):
c = m.chat.id
d[c] = ""
k = gu()
ttxxxn.send_message(c, "0", reply_markup=k)

@ttxxxn.callback_query_handler(func=lambda call: True)
def c_q(u):
hso(u.message.chat.id, u)

ttxxxn.polling()

بوت الاله الحاسبه بي ازرار شفافه تقدر تاخد الاسكربت 🔥

منزله عشان ساحب و بشتغل علي مشروع محتاج وقت وانا معنديش وقت 🥲
@priknm
Please open Telegram to view this post
VIEW IN TELEGRAM
💋5👍3🤩32❤‍🔥2👌2