17 Dec 2024, 00:22 UTC271 views9 reactionsread 10 August 2026 Anime Generator
Command- /anime
HTTP.get({
url: "https://api.jikan.moe/v4/anime?page=" + Libs.Random.randomInt(1, 100),
success: "/success",
error: "/onError"
});
Command- /success
var response = JSON.parse(content);
if (response.data && response.data.length > 0) {
var randomIndex = Libs.Random.randomInt(0, response.data.length - 1);
var anime = response.data[randomIndex];
var title = anime…
👍9
15 Dec 2024, 23:07 UTC377 views7 reactionsread 10 August 2026 Check if a user is a Telegram premium user or not
Command- /check
if (request.reply_to_message) {
var userId = request.reply_to_message.from.id;
HTTP.get({
url: "https://api.telegram.org/bot" + bot.token + "/getChatMember?chat_id=" + chat.chatid + "&user_id=" + userId,
success: "/success",
error: "/onError"
});
} else {
Bot.sendMessage("Please reply to a user's message to check their Telegram P…
👍7
9 Dec 2024, 15:54 UTC359 views14 reactionsread 10 August 2026 Drop Reactions if it worked 👍
👎10❤4
9 Dec 2024, 15:48 UTC471 views8 reactionsread 10 August 2026 Advertisementerid leftUser
Automatically Bans User Who Left The Group Chat
Command- *
var leftUser = request.left_chat_member;
if (leftUser) {
let username = leftUser.username ? @${leftUser.username} : leftUser.first_name;
let groupName = request.chat.title;
let goodbyeMessage = 🚫 {name} has left or was removed from {groupname} and has been banned.;
goodbyeMessage = goodbyeMessage.replace("{name}", username).replace("{grou…
👎7❤1
7 Dec 2024, 17:15 UTC229 views6 reactionsread 10 August 2026 This bot can help you build up your TikTok Account
You can get likes, views and Followers for free👍
https://t.me/tiktoup_bot?start=a4YGAw0A
👍3🔥3
7 Dec 2024, 17:04 UTC358 views1 reactionsread 10 August 2026 Weather Data Generator using Api
Create an Account and Generate your Api Key from OpenWeather
Command- *
Api.sendChatAction({
chat_id: chat.chatid,
action: "typing"
});
var city = message;
var apiKey = "Your Api Key";//replace with your Api key
var url = "https://api.openweathermap.org/data/2.5/weather?q=" + encodeURIComponent(city) + "&appid=" + apiKey + "&units=metric";
User.setProperty("message_id", …
❤1
7 Dec 2024, 12:44 UTC416 viewsread 10 August 2026 Fake User data Generator using Api
Command- *
HTTP.get({
url: "https://randomuser.me/api/",
success: "/success",
error: "/onError"
});
/success
var response = JSON.parse(content);
var user = response.results[0];
var name = user.name.first + " " + user.name.last;
var email = user.email;
var location = user.location.city + ", " + user.location.country;
Api.sendMessage({
chat_id: chat.chatid,
te…
7 Dec 2024, 12:28 UTC267 views3 reactionsread 10 August 2026 Random Quote BJS using Api
Command- *
Api.sendChatAction({
chat_id: chat.chatid,
action: "typing"
});
User.setProperty("message_id", chat.message_id, "integer");
HTTP.get({
url: "https://dummyjson.com/quotes/random",
success: "/success",
error: "/onError"
});
Command- /success
var message_id = User.getProperty("message_id");
try {
var response = JSON.parse(content);
var quote = res…
👍3
Goddy BJS pinned «Photo Protection Description: User can’t be able to save the photo Api.sendPhoto({ chat_id: user.telegramid, photo: "Photo Link", // Add your photo link caption: "You can’t save this photo trust me.", protect_content: true //protection is set to true…»
6 Dec 2024, 10:07 UTC247 views2 reactionsread 10 August 2026 This bot can help you build up your TikTok Account
You can get likes, views and Followers for free👍
https://t.me/tiktoup_bot?start=a4YGAw0A
👍2
6 Dec 2024, 08:05 UTC361 views2 reactionsread 10 August 2026 Random Memes using Api
Command- Any command
HTTP.get({
url: "https://api.imgflip.com/get_memes",
success: "/success"
});
Command- /success
var data = JSON.parse(content);
var memes = data.data.memes;
var randomMeme = memes[Math.floor(Math.random() * memes.length)];
Api.sendPhoto({
chat_id: user.telegramid,
photo: randomMeme.url,
caption: randomMeme.name
});
👍2
6 Dec 2024, 08:00 UTC258 views3 reactionsread 10 August 2026 Text to speech
Description: converts your text to audio
200 characters maximum
Command - /text
Answer: Send your text
Wait for answer on
var text = message;
var url = "https://translate.google.com/translate_tts?ie=UTF-8&q=" + encodeURIComponent(text) + "&tl=en&client=tw-ob";
Api.sendAudio({
chat_id: user.telegramid,
audio: url,
caption: "I have generated uour audio!",
parse_mode: "Markdown"
});
👍3
Showing the 12 most recent of 20 posts we hold for @goddybjs. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked ≈ was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.