JS Organization
35.2K subscribers
305 photos
45 videos
4 files
168 links
This is The Official Channel Of JS Organization 💬
Our Another Channels And Groups -
@JSEarnMoney
@JS_SupportGroup
@Cheapment
Contact @Swrov Admin For Any issue Or Promotional Service
Download Telegram
এখন ট্রেন আসবে,
কদিন পর নিজেরাই ট্রেনে ঢিল মারবে।
তখন ট্রেনের নিরাপত্তার জন্য সোলজার আসবে।
বুঝলা, ভাতিজারা? 🇧🇩

#Copied
😘74🥰4😢3
Forwarded from TapSwap Mining
Claim Binnance Red Packet - 🛒

💰 Redeem Code : BPCACNLRLJ

https://s.binance.com/GoKZe2qI 
Please open Telegram to view this post
VIEW IN TELEGRAM
🥰53😘3
Group Admin List Check Python Code For TBC 🤖


Command Name : /admin

Code :

chat_id = message.chat.id
admins = bot.getChatAdministrators(chat_id)
admin_list = "\n".join([admin.user.first_name for admin in admins])
bot.replyText(
    chat_id=message.chat.id,
    text=f"Admins in this group:\n{admin_list}")


Use This Command Only Group.


#adminList #admin #groupAdmin

© @JSOrganization 🤖

If Anyone Face Any Error Or Problem. So Message @itsSowrov 🙂
Please open Telegram to view this post
VIEW IN TELEGRAM
7🥰4😘3👍1
Raat bhar ka hai mehmaan, Subah ko chale aaye koi. Rishte gehre hote hain, Yaadein bhi sataaye koi 👏😊



The guest of the night, Leaves in the morning. Relationships are deep, Memories also haunt someone 😊👏
7😘6🥰3👻2
This media is not supported in your browser
VIEW IN TELEGRAM
I'm Noob On Freefire 😁
6🥰4😘4🤬1
I'm Thinking About To Create Something Else 👀🤔
Anyone have any idea 🤔
Please open Telegram to view this post
VIEW IN TELEGRAM
🥰65😘2
Today Some Bots Are Very Slow For Server Issue 😢
Please open Telegram to view this post
VIEW IN TELEGRAM
6😘6🥰5
Sorry All..Today Server Problem...So Bot Are Very Slow.

For this case..i Couldn't make the New Bot That I Was Say.

Don't Worry...Server Problem Will Solve Soon
🥰104😘4👍3
How Are You All 👀
Anonymous Poll
77%
Fine ❤️
23%
Not Fine 🥺
🥰116😘6😢2
Sorry All Members. I was Offline. So i couldn’t see the Reaction Bot Status. 😒

Iteration Now Over. So Now We are Adding More Itteration.


So it takes Some Moments Delay 😊

We Shall Fixed It Very Soon 🔸
Please open Telegram to view this post
VIEW IN TELEGRAM
4😘4
Auto Reaction Bot is Now On

Message -@itsSowrov For Any Help
Please open Telegram to view this post
VIEW IN TELEGRAM
6😘6
🕒 Current Time In Bangladesh:
10:44:16 AM

📅 Current Date In Bangladesh:
Saturday, August 17, 2024

👤 Last Clicked By: ༄●⃝𝗡𝗜𝗛𝗔𝗟 𝗙𝗙ܔ 🫀❤️‍🩹
5😘4🥰3
Dear members,

The codes shared on our channel are created for your convenience. I'm pleased to see you using them. However, I regret to inform you that some people are copying our codes and posting them in their channels under their own names, which is not acceptable.

I kindly request that if you use or share our codes, please mention our channel's name. This helps us get proper credit and motivates us to share more codes for your benefit.

Thank you for your understanding.

Best regards,
[
@itsSowrov]
7🥰6😘3👍2
Reaction Bot iteration Over 😖

Wait Some Moments 😐
Please open Telegram to view this post
VIEW IN TELEGRAM
3🥰3😘3
Auto Reaction Bot is Now On

Message -@itsSowrov For Any Help
Please open Telegram to view this post
VIEW IN TELEGRAM
🥰43😘3🔥1
JS Organization
🕒 Current Time In Bangladesh: 10:44:16 AM 📅 Current Date In Bangladesh: Saturday, August 17, 2024 👤 Last Clicked By: ༄●⃝𝗡𝗜𝗛𝗔𝗟 𝗙𝗙ܔ 🫀❤️‍🩹
Post Time On Channel With Refresh Button BJS CODE 🤖


Command Name : Any Command Name

Code : 🤖


// Function to get current time in Bangladesh (BST)
function getBangladeshTime() {
  let date = new Date();
  let options = { timeZone: 'Asia/Dhaka', hour: '2-digit', minute: '2-digit', second: '2-digit' };
  return date.toLocaleTimeString('en-US', options);
}

Api.sendMessage({
  chat_id: "@JSOrganization", // Replace with your channel username
  text: `🕒 Current Time In Bangladesh: ${getBangladeshTime()}\n\nLast Clicked by: N/A`,
  reply_markup: {
    inline_keyboard: [
      [{ text: "🔄 Refresh Time", callback_data: "/refresh_time" }]
    ]
  }
});

Command Name : /refresh_time
Code : 🤖


Api.answerCallbackQuery({
callback_query_id: request.id,
text: " 𝗧𝗶𝗺𝗲 𝗨𝗽𝗱𝗮𝘁𝗶𝗻𝗴.......",
show_alert: false
})
// Function to get current time and full date in Bangladesh (BST)
function getBangladeshDateTime() {
let date = new Date();
let optionsTime = {
timeZone: 'Asia/Dhaka',
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
};
let optionsDate = {
timeZone: 'Asia/Dhaka',
weekday: 'long', // Full day name
year: 'numeric', // Full year
month: 'long', // Full month name
day: 'numeric' // Day of the month
};
let timeString = date.toLocaleTimeString('en-US', optionsTime);
let dateString = date.toLocaleDateString('en-US', optionsDate);
return { time: timeString, date: dateString };
}

// Get the username of the user who clicked the button
let lastClickedBy = user.first_name;

// Retrieve current time and date in Bangladesh
let bangladeshDateTime = getBangladeshDateTime();

// Edit the message with the updated time, date, day name, and username
Api.editMessageText({
chat_id: request.chat_id,
message_id: request.message.message_id,
text: `*🕒 Current Time In Bangladesh:\n${bangladeshDateTime.time}\n\n📅 Current Date In Bangladesh:\n${bangladeshDateTime.date}\n\n👤 Last Clicked By: ${lastClickedBy}*`,
parse_mode: 'Markdown', // Enable Markdown formatting
reply_markup: {
inline_keyboard: [
[{ text: "🔄 Refresh Time", callback_data: "/refresh_time" }]
]
}})

YOU NEED TO REPLACE YOUR CHANNEL USERNAME And Change Function Of Time Of Your Own Country


#Time #CurrentTime #BST #JSOrganization

If You Post This In Your Channel. please Mention Our Channel Name

© @JSOrganization 🤖

If Anyone Face Any Error Or Problem. So Message @itsSowrov 🙂
Please open Telegram to view this post
VIEW IN TELEGRAM
5😘4😱3🥰2👍1
We Added 999999999 Extra Itteration (EXP) 👀😀

Validity - 1 Month ❤️‍🩹
Please open Telegram to view this post
VIEW IN TELEGRAM
8🥰3😱2😘2
This media is not supported in your browser
VIEW IN TELEGRAM
Please skip ads about such promotional or referral relationship or money income in my bot, we don't send it!
These ads come automatically!
So no need to work on them.
😒👀
🥰5😘42
Also Added Date And Day Name

Code Updated Click Here ⬅️
Please open Telegram to view this post
VIEW IN TELEGRAM
4🥰4😘3
🥰9😘43