JS Organization
35.3K 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
Live stream scheduled for
2 Minutes Left
😍13😘5🥰32
JS Organization
📱 YOUTUBE Premium Giveaway Need..?

🔤🔤🔤🔤🔤
Write your gmail in the comments! The first 5 people will be given a YouTube Premium invite!

কমেন্টে আপনাদের জিমেইল লিখুন! প্রথম ৫ জন কে ইউটিউব প্রিমিয়াম ইনভাইট দেওয়া হবে!
12🥰7😘3😍1
5 User Check Your Gmail....A Invitation Email Is sent.
Confirmed That And Send Screenshot Here.
Send screenshot here or i shall cancelled That.



৫ জন ইউজার আপনারা আপনাদের জিমেইল চেক করেন, সেখানে একটি ইনভাইটেশন মেইল গেছে, সেটি কনফার্ম করুন এবং এখানে স্কিনশট দিন!

স্ক্রিনশট না দিলে ক্যান্সাল করা হবে!
😍54🥰4😘3👍1
একটা ইউটিউব প্রিমিয়াম ফাকা আছে!

লাগবে নাকি??
Anonymous Poll
83%
হ্যা!
17%
না!
5🥰5😍3😘3
🚩🚩🚩🚩🚩🚩🚩
Please open Telegram to view this post
VIEW IN TELEGRAM
7😘5😍4🥰3
💬Write Your Gamil In Comment.

Only 1 User 💌

For Youtube Premium 📱
Please open Telegram to view this post
VIEW IN TELEGRAM
6🥰3😍3👍1🤔1😘1
JS Organization
💬Write Your Gamil In Comment. Only 1 User 💌 For Youtube Premium 📱
Check Your Mail....and send Me Screenshot Here..
6😍4😘4🥰3
def love_story():
while together:
write_code_of_life()
if faced_with_errors():
debug_and_repair()
celebrate_togetherness()

def celebrate_togetherness():
print("Celebrate your life of love 🖤")
😘7🥰5😍54
JS Organization pinned Deleted message
Eid Mubarak to all our wonderful subscribers! 🌙

May this Eid Al-Adha bring joy, peace, and prosperity to you and your loved ones.❤️

Thank you for being part of the JS Organization family 🤖
Please open Telegram to view this post
VIEW IN TELEGRAM
1🎉1
"🌙 Celebrate Eid with our special offer! Create your own bot from us for only $1 ‼️Don't miss out on this incredible deal. Hurry, offer ends soon! 🕦
🎉 #EidSpecial #CreateFromUs #LimitedTimeOffer"

Contact for purchasing details.

- @itsSowrov ☄️🙂
Please open Telegram to view this post
VIEW IN TELEGRAM
7🥰5😘4👍3👻2😱1
Please, wishing you all a blessed Eid ul Adha! 🌸

Thank you for your wish! Here's to a wonderful Eid ul Adha celebration!

Total Wishes So Far: 27
8🥰4😘4👍1
BOT ERROR NOTTFY TO OWNER AND Sent Error Sticker To USER.
Javascript Codes 🤖


COMMAND NAME : !

Code -
try {

}
catch (error) {
Bot.sendMessage(error)
}
Api.sendSticker({sticker: "CAACAgIAAxkBAAMCZnBKHHgDzY6mDNFc2SwTXqlnMj4AAgIBAAJWnb0KTuJsgctA5P81BA"
});
const chatId = 6162684693; // Replace with the actual Admin Userid
// Construct the message
const errorMessage = `Hey Owner, Your bot command "${message}" is facing an error. Error encountered by @${user.username}.`;

// Send the message
Api.sendMessage({
chat_id: chatId,
text: errorMessage
});


Donot Change Command Name ⚠️


#ErrorNottifyCode #Error #BotsBusiness #JSOrganization
@JSOrganization 🤖

Any help -
@itsSowrov 🙂
Please open Telegram to view this post
VIEW IN TELEGRAM
8😘4🥰2
Public Wishing With Show Profile Photo Post.

Javascript Code 🤖


Command Name : /post

Code ;
Api.sendPhoto({
  chat_id: "@JSOrganization",// Replace To Your Channel Username
photo:"https://t.me/JSOrganization" ,
  caption: "*👋Hello! @JSOrganization*",
  parse_mode: "Markdown", reply_markup: {inline_keyboard : [[{text: "CLICK TO WISH ", callback_data: "/post2"}]] }
})

Command Name : /post2

Code:
 // Get the user Telegram ID
let userId = user.telegramid;

// Array of random wishing captions
const randomCaptions = [
"May your wishes come true! 🌟",
"Sending you warm wishes on this special day! 🌸",
"Wishing you happiness and prosperity!",
"May your heart be filled with joy and peace.",
"Here's to a wonderful Eid ul Adha celebration!"
];

// Function to get a random element from an array
function getRandomElement(array) {
return array[Math.floor(Math.random() * array.length)];
}

// Define the new property name
const newPropertyName = "hasGreeted";

// Check if the user has already greeted
if (!User.getProperty(newPropertyName)) {
// Increment the total wishes by 1
let totalWishes = Bot.getProperty("total_wishes", 0) + 1;
Bot.setProperty("total_wishes", totalWishes, "integer");

// Set a flag to indicate that the user has greeted
User.setProperty(newPropertyName, true, "boolean");

// Send the response with an alert
Api.answerCallbackQuery({
callback_query_id: request.id,
text: `Successfully Wished 🌟\n\nTotal Wishes: ${totalWishes}`,
show_alert: true
});

// Select a random wishing caption
let randomCaption = getRandomElement(randomCaptions);

// Prepare the enhanced caption with the updated total wishes count and random wishing caption
let caption = `${user.first_name}, wishing you all a blessed Eid ul Adha! 🌸\n\n`
+ `Thank you for your wish! ${randomCaption}\n\n`
+ `Total Wishes So Far: ${totalWishes}`;

// Edit the message with the updated caption and media
Api.editMessageMedia({
chat_id: request.chat_id,
message_id: request.message.message_id,
media: {
type: "photo",
media: "t.me/" + user.username,
caption: caption
},
parse_mode: "markdown",
reply_markup: {
inline_keyboard: [
[{ text: " Wish Now ", callback_data: "/post2"}]
]
}
});
} else {
// User has already greeted, no action needed
Api.answerCallbackQuery({
callback_query_id: request.id,
text: "You have already greeted!",
show_alert: true
});
}

Replace Your Greetings Random Message As Your Wish 🔴

#Greeting #Wish #EidPost #PublicWish #BotsBusiness #JSOrganization

© @JSOrganization 🤖

If Anyone Face Any Error Or Problem. So Message @itsSowrov 🙂
Please open Telegram to view this post
VIEW IN TELEGRAM
5😘5🥰2
We Need Some User Who Can Make Many Telegram And WhatsApp Account Daily.

We Shall Make A Team.Then I Will Buy The Accounts.


Contact - @ReceiverAdmin
6😘4🥰11
রাসেল ভাইপার সাপ, যা চন্দ্রবোড়া বা উলুবোড়া নামেও পরিচিত, বাংলাদেশে প্রায় বিলুপ্ত হওয়া বিষধর সাপের মধ্যে সবচেয়ে বিষাক্ত। বাংলাদেশের উত্তর-পশ্চিমাঞ্চলের কয়েকটি এলাকায়, বিশেষ করে পদ্মা তীরবর্তী কয়েকটি জেলা ও চরাঞ্চলে, গত কিছুদিন যাবত বিষাক্ত রাসেলস ভাইপার সাপের কামড়ে বেশ কয়েকজন আহত হয়েছেন, যাদের মধ্যে অন্তত দুইজন মারা গেছেন। এই সাপের কামড়ে শরীরের দংশিত অংশে বিষ ছড়িয়ে অঙ্গহানি, ক্রমাগত রক্তপাত, রক্ত জমাট বাঁধা, স্নায়ু বৈকল্য, চোখ ভারী হয়ে যাওয়া, পক্ষাঘাত, কিডনির ক্ষতিসহ বিভিন্ন রকম শারীরিক উপসর্গ দেখা যেতে পারে। তবে আশ্চর্যের বিষয় হলো, সাপের এই প্রজাতিটি বাংলাদেশ থেকে বহু বছর আগে বিলুপ্ত হয়ে গিয়েছিল বলে ধারণা করা হচ্ছিল। কিন্তু গত ১০-১২ বছর আগে থেকে আবারো এই সাপের কামড়ের ঘটনার প্রমাণ পাওয়া যাচ্ছে। এই প্রজাতির সাপ এই অঞ্চলে আবার কীভাবে ফিরে আসছে, তা নিয়ে বাংলাদেশে গবেষণা চলছে।

#BEAlert #Bangladesh
😘72🥰22