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
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 ❤️🩹
Validity -
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. 😒👀
These ads come automatically!
So no need to work on them. 😒👀
🥰5😘4❤2
Favourite ⚽️ Football Team 👀
Anonymous Poll
27%
Argentina 🇦🇷
15%
Brazil 🇧🇷
19%
Portugal 🇵🇹
7%
France 🇫🇷
33%
Another.......✨
🥰9😘4❤3
We Are Enhancing The Speed, Reactions Amount Quality And Adding More Reaction On JS Auto Reaction Bot❤️
Please open Telegram to view this post
VIEW IN TELEGRAM
😘8🥰4❤3👍2
This media is not supported in your browser
VIEW IN TELEGRAM
Tutorial Video For @JSAutoReactionBot ❤️
🥰7❤5😘3👍2
New Features Upgrade Successful ✅
We Have Added A New Reaction "👍"For Channel
We Have Remove🤮🍌💩🖕 Those Reaction From Group
We Have Added Both Inline Button And Button Keyboard ⚙️
We Have Added "❓ HOW TO WORK ❓Button And Added The Tutorial Text With Video
We’ve Increase The Reaction Amount Quality ⚙️
If You Didn't Get Good Amount React So Please Note-
1 Bot = 1 Reaction
Multiple Photo Or Video Cant Support
To activate Good reaction functionality in your channel, ensure that the following Reaction are enabled:
- ❤️
- 🥰
- 😍
- 😘
- 👍
- @JSAutoReactionBot
More Information - @itsSowrov
🥰10❤5👍5😘5
Current Time And Date In Bangladesh TBC Python Code 🤖
#Time #TBC
© JS Organization
JS_Organization = libs.dateandtime.now('Asia/Dhaka')
hours = int(JS_Organization['time'].split(':')[0])
minutes = JS_Organization['time'].split(':')[1]
ampm = 'AM' if hours < 12 else 'PM'
hours12 = hours % 12
if hours12 == 0:
hours12 = 12
formatted_time = f"📅 Date:{JS_Organization['date']}\n🕓 Time: {hours12}:{minutes} {ampm}"
chat_id = message.chat.id
bot.sendMessage(chat_id=chat_id, text=f"Current date and time in Bangladesh:\n{formatted_time}") #Time #TBC
Please open Telegram to view this post
VIEW IN TELEGRAM
❤8🥰4👍3😘3
Set Bed Time / Restrictions For Command Use Between 12 AM To 6 AM Bangladesh Time🗓
TBC PYTHON CODE🤖
Command Name : YOUR COMMAND NAME
Code :
JS_Organizations = libs.dateandtime.now('Asia/Dhaka')
hours = int(JS_Organizations['time'].split(':')[0])
minutes = int(JS_Organizations['time'].split(':')[1])
seconds = int(JS_Organizations['time'].split(':')[2])
bed_time_start = 0 # 12 AM in 24-hour format
bed_time_end = 6 # 6 AM in 24-hour format
if hours >= bed_time_start and hours < bed_time_end:
remaining_hours = bed_time_end - hours - 1
remaining_minutes = 60 - minutes
remaining_seconds = 60 - seconds
ampm = 'AM' if hours < 12 else 'PM'
hours12 = hours % 12
if hours12 == 0:
hours12 = 12
remaining_time = f"<b>{remaining_hours} hours, {remaining_minutes} minutes, {remaining_seconds} seconds</b>"
user_first_name = message.from_user.first_name
message = (
f"<b>👋 Hey {user_first_name}</b>\n"
f"<b>━━━━━━━━•❅•°•❈•°•❅•━━━━━━━━\n"
f"It is Bed Time 🛏️\n"
f"So You Cannot Use This Button From 12:00 AM To 6:00 AM in Bangladesh Time\n"
f"Current Time: {hours12}:{minutes:02} {ampm}</b>\n"
f"<b>━━━━━━━━•❅•°•❈•°•❅•━━━━━━━━\n"
f"Come Back After: {remaining_time}</b>\n"
f"<b>━━━━━━━━•❅•°•❈•°•❅•━━━━━━━━</b>"
)
bot.sendMessage(chat_id=message.chat.id, text=message, parse_mode="HTML")
else:
#YOUR COMMAND Main CODE IS HERE, Or
bot.sendMessage("Now Up Time")Paste this code above the code of your command! And enter your code below!
You Can Change Your Timezone And Bed Time⏱
If You Post This In Your Channel. please Mention Our Channel Name For Credit
#BedTime #RestrictionTime #Time #TBC #JSOrganization
Please open Telegram to view this post
VIEW IN TELEGRAM
👍7❤6🥰5😘4
✨ Life is like coding:🔍 Embrace the errors,📚 Learn from them,
🏗 Keep building!🔧 Debugging life one step at a time:🌿 Every error is just a lesson in disguise.
Please open Telegram to view this post
VIEW IN TELEGRAM
👍10❤7🥰5😘4
Server Problem ⚠️ ... So bots are Not Working Now.
It'll Be Fixed And On Soon🌿
It'll Be Fixed And On Soon
Please open Telegram to view this post
VIEW IN TELEGRAM
❤8🥰6👍4😘3
This media is not supported in your browser
VIEW IN TELEGRAM
We (Bangladeshi) students are currently peacefully protesting against quota,but Student League an organization of the government ambushed us.Nearly two hundred people were injured and many were killed in the attack. At this time we need you very much because the journalists of our country are on the side of the government.They have no news on this issue.They have not promoting about on this issue.Seeking freedom has now become a crime for us.
#Save_Bangladeshi_students🇧🇩
Read More On - Aljazeera - Reuters - ApNews - Aa
😓
#Save_Bangladeshi_students
Read More On - Aljazeera - Reuters - ApNews - Aa
Please open Telegram to view this post
VIEW IN TELEGRAM
😘8👍5🥰5❤4😢1
Students in Bangladesh are suffering from repression in their demand for quota reform. We want to create global public opinion against the attacks by the police and the Sattro league. Your support is very important for us. Please express your assistance in this just movement.✊
Watch On - Aljazeera🇧🇩
Watch On - Aljazeera
And Thank You All For Sharing Our Quota Movement Post✊
Please open Telegram to view this post
VIEW IN TELEGRAM
YouTube
Student protests over Bangladesh job quota leave at least 100 injured
Dozens of people have been injured by violence at student protests in Bangladesh.
Police fired tear gas and charged with batons after fighting broke out between rival groups near Dhaka on Monday.
Students have been protesting for two weeks, calling for an…
Police fired tear gas and charged with batons after fighting broke out between rival groups near Dhaka on Monday.
Students have been protesting for two weeks, calling for an…
👍10❤6🥰3😘3😢2
⭐️The internet in Bangladesh has been restored after an 11-day shutdown. Since July 18,☄️ mobile and broadband services were gradually being restored, with mobile internet fully operational by July 28. The shutdown was primarily due to violence related to the quota reform movement, leading to a ban on social media usage.
But Social Media As Facebook,Tiktok, X Are Currently Off.
Telegram Also Off At the moment In Our Country. So We Need Use VPN For Using Telegram.
I was Offline From 11 Days. So i couldn’t Check The Bots.. I need Somw Times To Check All Things And Reply All Message.. Please co-operate 🙂
But Social Media As Facebook,Tiktok, X Are Currently Off.
Telegram Also Off At the moment In Our Country. So We Need Use VPN For Using Telegram.
And Network is Very Slow..
I was Offline From 11 Days. So i couldn’t Check The Bots.. I need Somw Times To Check All Things And Reply All Message.. Please co-operate 🙂
😘10👍6🥰6❤4
If Anyone Face Any Problem.
Please Contact - @itsSowrov☺️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍9❤7😘5🥰4🎉1