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
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
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🥰43👍2
This media is not supported in your browser
VIEW IN TELEGRAM
Tutorial Video For @JSAutoReactionBot ❤️
🥰75😘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
🥰105👍5😘5
Current Time And Date In Bangladesh TBC Python Code 🤖

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

© JS Organization
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

© Copyright : @JSOrganization
Question/Error : @itsSowrov
Please open Telegram to view this post
VIEW IN TELEGRAM
👍76🥰5😘4
Scammer Check Available Now In Our @GroupAntiScamBot

Try Out  Now
👀
Please open Telegram to view this post
VIEW IN TELEGRAM
9🥰5😘4👍3
🩸🩸🩸🩸🩸🩸🩸
Please open Telegram to view this post
VIEW IN TELEGRAM
9😘6👍3🥰3
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
👍107🥰5😘4
Server Problem ⚠️... So bots are Not Working Now.

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
😘107👍6🥰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
😓
Please open Telegram to view this post
VIEW IN TELEGRAM
😘8👍5🥰54😢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 🇧🇩

And Thank You All For Sharing Our Quota Movement Post
Please open Telegram to view this post
VIEW IN TELEGRAM
👍106🥰3😘3😢2
Thank You Daud Kim For Support Us 🇧🇩🤝🇰🇷


- Korean Youtuber
Please open Telegram to view this post
VIEW IN TELEGRAM
14👍10🥰5😘5