Are you interested in coding and looking to enhance your programming skills? Look no further than the Official Channel of Coding with Mohit! This channel, run by the talented Mohit, offers valuable insights, tutorials, and tips to help you excel in coding. Whether you are a beginner or an experienced coder, you will find something useful on this channel
Join the Coding with Mohit community on Youtube as well, where you can watch informative videos and further expand your coding knowledge. Follow this link to access the Youtube channel: https://youtube.com/@codingwithmohit05 nnNeed assistance with coding, have questions, or want to share your own code? Feel free to reach out to Mohit directly on Telegram at @Mohit_Kr_Mishra. He is always ready to provide support and help you navigate the world of coding
Don't miss out on the opportunity to learn and grow as a coder. Join Coding with Mohit today and take your coding skills to the next level!
14 Jan, 03:11
13 Jan, 09:19
12 Jan, 13:03
10 Jan, 05:46
02 Jan, 17:09
31 Dec, 17:39
29 Dec, 19:04
25 Dec, 14:16
23 Dec, 15:43
HTTP.post({
url: "https://verify-membership-coding-with-mohits-projects.vercel.app/verify-membership",
body: {
botToken: bot.token,
chatIds: ["@codingwithmohit", "@codingwithmohittutorials"], // your chat ids array
userId: user.telegramid
},
success: "your-success-command"
});
{
"ok": true,
"userId": 6040616626,
"joinedAllChats": true,
"membership": [
{
"chatId": "@codingwithmohit",
"status": "administrator",
"isMember": true
},
{
"chatId": "@codingwithmohittutorials",
"status": "administrator",
"isMember": true
}
]
}
23 Dec, 13:20
18 Dec, 15:29
17 Dec, 05:21
15 Dec, 17:48
15 Dec, 17:03
14 Dec, 13:21
10 Dec, 16:38
30 Nov, 08:53
28 Nov, 10:18
28 Nov, 02:50
27 Nov, 17:44
23 Nov, 14:55
/setup
command and add this code :Libs.MembershipChecker.setup()
@
command and add this code :if(chat?.chat_type == "private"){
Libs.MembershipChecker.handle();
}
/onNeedJoining
command and add this code :Bot.sendMessage(
"You still need to join: " + options.chat_id
);
/onJoining
command and add this code :if(!options){ return } // protect from manual run
Bot.sendMessage("Thank you for joining to" + options.chat_id);
/onAllJoining
command and add this code :if(!options){ return } // protect from manual run
Bot.sendMessage("Thank you for joining!");
// Now add your main menu code or redirect to main menu
22 Nov, 09:27
20 Nov, 09:14
16 Nov, 14:22
15 Nov, 06:28
09 Nov, 15:35
07 Nov, 17:07
28 Oct, 18:31
11 Oct, 06:24
03 Oct, 07:48
02 Oct, 02:08
30 Sep, 17:13
27 Sep, 07:33
26 Sep, 11:28
/download
Send URL from Facebook, Instagram or YouTube.
HTTP.get({
url: `https://tele-social.vercel.app/down?url=${message}`,
success: "/download2",
background: true
});
/download2
try {
const platform = JSON.parse(content).platform;
if (platform == "Facebook" || platform == "Instagram") {
Api.sendVideo({
video: JSON.parse(content).data.urls[0]
});
} else if (platform == "YouTube") {
Api.sendVideo({
video: JSON.parse(content).formats.find(format => format.type === "mp4").url
});
}
} catch (error) {
Bot.sendMessage("Something went wrong.");
}
24 Sep, 10:49
22 Sep, 11:09
18 Sep, 01:13
17 Sep, 15:40
/convert
const amount = 10; // Enter your amount to convert.
const from = "USD"; // Enter the currency to convert from.
const to = "TON" // Enter the currency to convert to.
const convertedAmount = CurrencyQuote.convert({ amount: amount, from: from, to: to });
Api.sendMessage({
text: `${amount} ${from} ~ ${convertedAmount} ${to}`
});
08 Sep, 12:00