Text to Speech Bjs (Make this bot with Bots.Bussines)
Command:
Answer :
Wait for Answer On
Bjs:
Command:
Your CommandAnswer :
*Enter a Text to Convert to Speech!*Wait for Answer On
Bjs:
var api = "3f5866ce7e32445f903e48fb27e58796"//get it from https://voicerss.org
Api.sendAudio({
audio:"api.voicerss.org/?key="+api+"&hl=en-us&r=-1&c=MP3&src="+message,
caption:"*๐ Here is your Speech!!\n\n๐ซGenerated by @"+bot.name+"*",
parse_mode:"markdown"
})Forwarded from Pavel Durov (Paul Du Rove)
Please open Telegram to view this post
VIEW IN TELEGRAM
AI Agent Bjs
Command: /refresh
Wait for Answer Off
Bjs:
var url = "https://teleserviceapi.vercel.app/refresh?id=" + user.telegramid;
HTTP.get({ url: url });
Bot.sendMessage("~You are ready to go for your new conversation โบ๏ธ~");
Command: /about_bot
Wait for Answer Off
Bjs:
var aboutText = "๐ค *About the Advanced Chat GPT Bot*\n\n" +
"Welcome to one of the most versatile AI-powered bots! Hereโs what makes this bot special:\n\n" +
"๐ *Key Features:*\n" +
"1๏ธโฃ AI-powered assistance for programming, data analysis, and more.\n" +
"2๏ธโฃ Fun modules like AI Girlfriend *Nezuko* for an engaging experience.\n" +
"3๏ธโฃ Customizable and interactive user interface.\n\n" +
"๐ *Developer:* [@OhOhSimon](https://t.me/OhOhSimon)\n" +
"๐ข *Official Channel:* [@SimonCodingAndBots](https://t.me/SimonCodingAndBots)\n\n" +
"โก๏ธ Stay tuned for updates and enjoy exploring all the features!";
Api.sendMessage({
text: aboutText,
parse_mode: "Markdown",
disable_web_page_preview: true
});
Command:*
Wait for Answer Off
Bjs:
var url = "https://api-tele-zeta.vercel.app/gpt";
var prompt = "You are a virtual helpful assistant by Teleservices Api";
var text = message;
Api.sendChatAction({
chat_id: chat.chatid,
action: "typing"
});
HTTP.post({
url: url,
body: {
text: text,
id: user.telegramid, //optional
prompt: prompt //optional
},
background: true,
success: "/done"
});
Command:/clone_bot
Wait for Answer Off
Bjs:
Bot.sendMessage("๐ To clone this bot, enter the password:");
Bot.runCommand("/verify_password");
Command:/verify_password
Wait for Answer On
Bjs:
if (message === "Simon298") {
Bot.sendMessage("โ Password verified!\n\nPlease enter your Bots.Business email to transfer the bot to your account:");
Bot.runCommand("/submit_email");
} else {
Bot.sendMessage("โ Incorrect password. Please try again:");
Bot.runCommand("/verify_password");
}
Command:/submit_email
Wait for Answer On
Bjs:
if (!message) {
Bot.sendMessage("๐ Please enter the email address where you'd like to send this bot.");
return;
}
function isValidEmail(email) {
var emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return emailRegex.test(email);
}
if (!isValidEmail(message)) {
Bot.sendMessage("โ Invalid email format. Please try again with a correct email address.");
return;
}
BBAdmin.installBot({
email: message,
bot_id: bot.id
});
Bot.sendMessage("โ Bot successfully sent to: " + message);
// Notify your channel
var userInfo = "๐ <b>New Bot Cloned!</b>\n\n" +
"๐ค <b>User:</b> " + user.first_name + " " + (user.last_name || "") +
"\n๐ <b>User ID:</b> " + user.telegramid +
"\n๐ง <b>Email:</b> " + message +
"\nโฐ <b>Time:</b> " + Date().toString();
Api.sendMessage({
chat_id: "@SimonCodingAndBots", // Replace with your channel username
text: userInfo,
parse_mode: "HTML"
});
Command:/modules
Wait for Answer Off
Bjs:
var modules = [
[
{ text: "๐ป Code Helper", callback_data: "/module_code_helper" },
{ text: "๐ Data Analysis", callback_data: "/module_data_analysis" }
],
[
{ text: "๐ค AI Tools", callback_data: "/module_ai_tools" },
{ text: "๐ฌ AI Girlfriend - Nezuko", callback_data: "/module_nezuko" }
],
[
{ text: "๐ Learning Hub", callback_data: "/module_learning_hub" },
{ text: "๐ฎ Game Ideas", callback_data: "/module_game_ideas" }
]
];
Api.sendMessage({
text: "๐งฐ Select a module from the list below\n\n It's Currently On Beta Version Modules Will Not Work You Can use it Normally โจ",
reply_markup: { inline_keyboard: modules }
});
Command:/process_transfer
Wait for Answer Off
Bjs:
var email = Bot.getProperty("clone_request_email");
if (!email) {
Bot.sendMessage("โ ๏ธ No email found for transfer. Please restart the process using /clone_bot.");
} else {
Bot.sendMessage("โ Bot successfully transferred to your account associated with this email: " + email + "\n\n๐ Access the bot at [Bots.Business](https://bots.business).");
}
Command:/start
Wait for Answer Off
Bjs:
Command: /refresh
Wait for Answer Off
Bjs:
var url = "https://teleserviceapi.vercel.app/refresh?id=" + user.telegramid;
HTTP.get({ url: url });
Bot.sendMessage("~You are ready to go for your new conversation โบ๏ธ~");
Command: /about_bot
Wait for Answer Off
Bjs:
var aboutText = "๐ค *About the Advanced Chat GPT Bot*\n\n" +
"Welcome to one of the most versatile AI-powered bots! Hereโs what makes this bot special:\n\n" +
"๐ *Key Features:*\n" +
"1๏ธโฃ AI-powered assistance for programming, data analysis, and more.\n" +
"2๏ธโฃ Fun modules like AI Girlfriend *Nezuko* for an engaging experience.\n" +
"3๏ธโฃ Customizable and interactive user interface.\n\n" +
"๐ *Developer:* [@OhOhSimon](https://t.me/OhOhSimon)\n" +
"๐ข *Official Channel:* [@SimonCodingAndBots](https://t.me/SimonCodingAndBots)\n\n" +
"โก๏ธ Stay tuned for updates and enjoy exploring all the features!";
Api.sendMessage({
text: aboutText,
parse_mode: "Markdown",
disable_web_page_preview: true
});
Command:*
Wait for Answer Off
Bjs:
var url = "https://api-tele-zeta.vercel.app/gpt";
var prompt = "You are a virtual helpful assistant by Teleservices Api";
var text = message;
Api.sendChatAction({
chat_id: chat.chatid,
action: "typing"
});
HTTP.post({
url: url,
body: {
text: text,
id: user.telegramid, //optional
prompt: prompt //optional
},
background: true,
success: "/done"
});
Command:/clone_bot
Wait for Answer Off
Bjs:
Bot.sendMessage("๐ To clone this bot, enter the password:");
Bot.runCommand("/verify_password");
Command:/verify_password
Wait for Answer On
Bjs:
if (message === "Simon298") {
Bot.sendMessage("โ Password verified!\n\nPlease enter your Bots.Business email to transfer the bot to your account:");
Bot.runCommand("/submit_email");
} else {
Bot.sendMessage("โ Incorrect password. Please try again:");
Bot.runCommand("/verify_password");
}
Command:/submit_email
Wait for Answer On
Bjs:
if (!message) {
Bot.sendMessage("๐ Please enter the email address where you'd like to send this bot.");
return;
}
function isValidEmail(email) {
var emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return emailRegex.test(email);
}
if (!isValidEmail(message)) {
Bot.sendMessage("โ Invalid email format. Please try again with a correct email address.");
return;
}
BBAdmin.installBot({
email: message,
bot_id: bot.id
});
Bot.sendMessage("โ Bot successfully sent to: " + message);
// Notify your channel
var userInfo = "๐ <b>New Bot Cloned!</b>\n\n" +
"๐ค <b>User:</b> " + user.first_name + " " + (user.last_name || "") +
"\n๐ <b>User ID:</b> " + user.telegramid +
"\n๐ง <b>Email:</b> " + message +
"\nโฐ <b>Time:</b> " + Date().toString();
Api.sendMessage({
chat_id: "@SimonCodingAndBots", // Replace with your channel username
text: userInfo,
parse_mode: "HTML"
});
Command:/modules
Wait for Answer Off
Bjs:
var modules = [
[
{ text: "๐ป Code Helper", callback_data: "/module_code_helper" },
{ text: "๐ Data Analysis", callback_data: "/module_data_analysis" }
],
[
{ text: "๐ค AI Tools", callback_data: "/module_ai_tools" },
{ text: "๐ฌ AI Girlfriend - Nezuko", callback_data: "/module_nezuko" }
],
[
{ text: "๐ Learning Hub", callback_data: "/module_learning_hub" },
{ text: "๐ฎ Game Ideas", callback_data: "/module_game_ideas" }
]
];
Api.sendMessage({
text: "๐งฐ Select a module from the list below\n\n It's Currently On Beta Version Modules Will Not Work You Can use it Normally โจ",
reply_markup: { inline_keyboard: modules }
});
Command:/process_transfer
Wait for Answer Off
Bjs:
var email = Bot.getProperty("clone_request_email");
if (!email) {
Bot.sendMessage("โ ๏ธ No email found for transfer. Please restart the process using /clone_bot.");
} else {
Bot.sendMessage("โ Bot successfully transferred to your account associated with this email: " + email + "\n\n๐ Access the bot at [Bots.Business](https://bots.business).");
}
Command:/start
Wait for Answer Off
Bjs:
var welcomeText = "โจ Welcome to the Advanced Chat GPT Bot! โจ\n\n" +
"๐ Hello, " + user.first_name + "!\n\n" +
"๐ค This bot can help you with:\n" +
"๐น Coding assistance\n" +
"๐น AI tools\n" +
"๐น Learning resources\n" +
"๐น Fun interactions like *Nezuko*!\n\n" +
"๐ Developer: [@OhOhSimon](https://t.me/OhOhSimon)\n" +
"๐ข Channel: [@SimonCodingAndBots](https://t.me/SimonCodingAndBots)\n\n" +
"โก๏ธ Letโs get started!";
var buttons = [
[{ text: "๐ Explore Modules", callback_data: "/modules" }, { text: "๐งฐ About the Bot", callback_data: "/about_bot" }],
[{ text: "๐ข Channel", url: "https://t.me/SimonCodingAndBots" }, { text: "๐จโ๐ป Developer", url: "https://t.me/OhOhSimon" }],
[{ text: "๐ Clone Bot", callback_data: "/clone_bot" }]
];
Api.sendMessage({
text: welcomeText,
parse_mode: "Markdown",
disable_web_page_preview: true,
reply_markup: { inline_keyboard: buttons }
});
Command:/done
Wait for Answer Off
Bjs:
var data = JSON.parse(content);
var status = data.status;
function replaceSpecialCharacters(text) {
var updatedText = text.replace(/\~\~/g, '~');
updatedText = updatedText.replace(/โจ/g, 'โจ');
updatedText = updatedText.replace(/โ /g, 'โ ');
return updatedText;
}
function replaceSpecialCharacter(text) {
var updated = text.replace(/\~/g, '~');
return updated;
}
if (status === "success") {
let text1 = data.message;
var text2 = replaceSpecialCharacters(text1);
var text = replaceSpecialCharacter(text2);
var button = [
[
{ text: "๐ End The Topic ", callback_data: "/refresh" },
{ text: "๐งฐ Modules", callback_data: "/modules" } // Added Modules button
]
];
Api.sendMessage({
text: text,
parse_mode: "Markdown",
reply_markup: { inline_keyboard: button },
});
} else {
Bot.sendMessage("~Something Went Wrong โ\n\nPlease try again or contact @SimonCodingAndBots\n\nERROR: ~" + data.message);
}
"๐ Hello, " + user.first_name + "!\n\n" +
"๐ค This bot can help you with:\n" +
"๐น Coding assistance\n" +
"๐น AI tools\n" +
"๐น Learning resources\n" +
"๐น Fun interactions like *Nezuko*!\n\n" +
"๐ Developer: [@OhOhSimon](https://t.me/OhOhSimon)\n" +
"๐ข Channel: [@SimonCodingAndBots](https://t.me/SimonCodingAndBots)\n\n" +
"โก๏ธ Letโs get started!";
var buttons = [
[{ text: "๐ Explore Modules", callback_data: "/modules" }, { text: "๐งฐ About the Bot", callback_data: "/about_bot" }],
[{ text: "๐ข Channel", url: "https://t.me/SimonCodingAndBots" }, { text: "๐จโ๐ป Developer", url: "https://t.me/OhOhSimon" }],
[{ text: "๐ Clone Bot", callback_data: "/clone_bot" }]
];
Api.sendMessage({
text: welcomeText,
parse_mode: "Markdown",
disable_web_page_preview: true,
reply_markup: { inline_keyboard: buttons }
});
Command:/done
Wait for Answer Off
Bjs:
var data = JSON.parse(content);
var status = data.status;
function replaceSpecialCharacters(text) {
var updatedText = text.replace(/\~\~/g, '~');
updatedText = updatedText.replace(/โจ/g, 'โจ');
updatedText = updatedText.replace(/โ /g, 'โ ');
return updatedText;
}
function replaceSpecialCharacter(text) {
var updated = text.replace(/\~/g, '~');
return updated;
}
if (status === "success") {
let text1 = data.message;
var text2 = replaceSpecialCharacters(text1);
var text = replaceSpecialCharacter(text2);
var button = [
[
{ text: "๐ End The Topic ", callback_data: "/refresh" },
{ text: "๐งฐ Modules", callback_data: "/modules" } // Added Modules button
]
];
Api.sendMessage({
text: text,
parse_mode: "Markdown",
reply_markup: { inline_keyboard: button },
});
} else {
Bot.sendMessage("~Something Went Wrong โ\n\nPlease try again or contact @SimonCodingAndBots\n\nERROR: ~" + data.message);
}
And you can also clone the bot with @KitsuneAISimonBot just tap the '๐Clone Bot' and send the password 'Simon298'.Send your Bots.Bussines email and go to Bots.Bussines.And you will see the bot called ChatGPT GBot and tap it then paste your bot API and launch the bot and your bot is ready.
Free Text to Speech API Key that uses on @TextToSpeehSimonBot
API Key - 3f5866ce7e32445f903e48fb27e58796
Credits - Unlimited
Own by @OhOhSimon
Published by @MakenCodingAndBots
API Key - 3f5866ce7e32445f903e48fb27e58796
Credits - Unlimited
Own by @OhOhSimon
Published by @MakenCodingAndBots
Our Developer Simon Has Change His Username And Profile Picture
Old Username - @OhOhSimon
New Username - @DuckySimon
Old Username - @OhOhSimon
New Username - @DuckySimon
Go to @BotFather and send /mybots command and tap your bot that you want to clone and tap Token and forward the next message from @BotFather to @AutoKickerMakenBot and done.