TᴇʟᴇBᴏᴛ Cʀᴇᴀᴛᴏʀ Cᴏᴅᴇs
1.6K subscribers
35 photos
4 videos
2 files
13 links
🔌Sharing TPY codes, bot templates, and cool tricks for Telebot Creator users! Whether you're into refer & earn, crypto bots, or just cool automations—this is your spot to grab ready-made scripts and stay updated!

❣️For Help (DM): @IncomeTeamAdmin
Download Telegram
Media is too big
VIEW IN TELEGRAM
🚀 How to Create a Ton Auto Payment Bot (With Admin Panel)
1️⃣ Sign up → https://telebotcreator.com
2️⃣ Copy your email
3️⃣ Join 👉 @TeleBotCreatorDiscussion & send:
/send_bot yourmail@gmail.com
4️⃣ Complete the payment → click  Check
5️⃣ Approve the transfer request in your email 📥
6️⃣ Set your bot token → run the bot
7️⃣ 🔑 Get API Memomatric: Click here
 → Copy full response → save only memomatric_text → paste in bot (Set API Memomatric)
8️⃣ ⚙️ Install Tonkeeper → Import wallet → paste memomatric_text → continue
9️⃣ Add funds to Tonkeeper
🔟 Do your first withdrawal (takes a bit) → after that instant! Only blockchain fee.
🎛 Features: channel setup, verification, full admin panel control.
📢 Updates: @TeleBotCreatorCodes
🆘 Support: @IncomeTeamAdmin
😁95👍1🔥1
TᴇʟᴇBᴏᴛ Cʀᴇᴀᴛᴏʀ Cᴏᴅᴇs
🚀 How to Create a Ton Auto Payment Bot (With Admin Panel) 1️⃣ Sign up → https://telebotcreator.com 2️⃣ Copy your email 3️⃣ Join 👉 @TeleBotCreatorDiscussion & send: /send_bot yourmail@gmail.com 4️⃣ Complete the payment → click  Check 5️⃣ Approve the transfer…
🆕 New Update Released – You no longer need Tonkeeper or any other app. Everything is now handled directly via the links below.
1. Create a Wallet Address
Open this link in your browser:
👉 https://project-hub.tg-dev-pro.site/wallet-manager/deposit/create_wallet.php
You will receive a JSON response like this:
json
{
"data": {
"addresses": {
"bounceable": "EQCRHrMN7FtNEsSi8nZnQhOKrCVq8TZXC9UQEYJEFPDbI_kq",
"non_bounceable": "UQCRHrMN7FtNEsSi8nZnQhOKrCVq8TZXC9UQEYJEFPDbI6Tv",
"raw": "0:911eb30dec5b4d12c4a2f2766742138aac256af136570bd51011824414f0db23"
},
"balance": { "ton": 0, "usd": 0 },
"mnemonic": [ "climb", "army", ... ],
"mnemonic_text": "climb army robust fault settle wrestle special warrior alien damage rescue dove into simple modify verify picture entry shield robot swift hamster foil narrow"
},
"success": true
}

 IMPORTANT – Copy the entire response and save it in a safe place.
You will need the mnemonic_text later (for your bot or balance checks).
2. How to Check Your Wallet Balance
Use this URL pattern (replace the mnemonic with your own words):
text
https://project-hub.tg-dev-pro.site/wallet-manager/deposit/get_balance.php?mnemonic=climb army robust fault settle wrestle special warrior alien damage rescue dove into simple modify verify picture entry shield robot swift hamster foil narrow

You will receive a response like:
json
{
"data": {
"addresses": {
"bounceable": "EQCRHrMN7FtNEsSi8nZnQhOKrCVq8TZXC9UQEYJEFPDbI_kq",
"non_bounceable": "UQCRHrMN7FtNEsSi8nZnQhOKrCVq8TZXC9UQEYJEFPDbI6Tv",
"raw": "0:911eb30dec5b4d12c4a2f2766742138aac256af136570bd51011824414f0db23"
},
"balance": { "ton": 0, "usd": 0 },
"ton_price_usd": 1.853803
},
"success": true
}

3. Deposit Address – Use Only non_bounceable
When you need to receive funds (deposit), always use the non_bounceable address.
Example from above:
UQCRHrMN7FtNEsSi8nZnQhOKrCVq8TZXC9UQEYJEFPDbI6Tv
⚠️ Do not use bounceable or raw for deposits.
6👍1😁1👀1
Ton name change ing 👀🤡
🤡62👍1😁1
Add your any code premium emoji button style etc just send this prompt in ai and give your code ☺️

You are an expert Telebot Creator (TPY) developer.

Your task is to upgrade ONLY the UI of the provided TPY code.

## STRICT RULES

- Do NOT change any logic.
- Do NOT change commands.
- Do NOT change variables.
- Do NOT change APIs.
- Do NOT change callbacks.
- Do NOT change conditions.
- Do NOT change loops.
- Do NOT change database operations.
- Do NOT change resources.
- Keep 100% Telebot Creator (TPY) compatibility.
- No imports.
- No external libraries.
- Preserve all existing functionality.
- Return FULL upgraded code only.
- Do not explain changes.
- Do not wrap output in markdown.
- Output only the final TPY code.

## Add These Constants At Top (If Missing)

EMOJI_BULLET = "5381813206954025989"
EMOJI_STAR = "5258185631355378853"
EMOJI_BACK = "4997256682972121121"
EMOJI_NEXT = "6301076413210429176"
EMOJI_GIFT = "5274682732159636249"
EMOJI_USER = "5316727448644103237"
EMOJI_SUCCESS = "5260341314095947411"
EMOJI_FAIL = "5258318620722733379"

## INLINE BUTTON UPGRADE

Convert every inline button to:

{
"text": "Button",
"callback_data": "callback",
"style": "primary",
"icon_custom_emoji_id": EMOJI_BULLET
}

### Special Icon Mapping

Back → EMOJI_BACK

Next → EMOJI_NEXT

Profile / User / Account → EMOJI_USER

Gift / Bonus / Referral → EMOJI_GIFT

Confirm / Verify / Continue / Submit → EMOJI_SUCCESS

Delete / Remove / Cancel / Reject → EMOJI_FAIL

Star / VIP / Premium → EMOJI_STAR

Keep original callback_data and button layout unchanged.

## REPLY KEYBOARD UPGRADE

Convert reply keyboard buttons to:

{
"text": "Button",
"style": "primary",
"icon_custom_emoji_id": EMOJI_USER
}

Example:

{
"keyboard": [
[
{
"text": "Profile",
"style": "primary",
"icon_custom_emoji_id": EMOJI_USER
}
]
],
"resize_keyboard": True
}

Keep original keyboard structure and rows unchanged.

## PREMIUM MESSAGE EMOJIS

Replace standard emojis inside texts with Telegram Premium emoji tags.

### Mapping

→ EMOJI_BULLET

→ EMOJI_STAR

🎁 → EMOJI_GIFT

👤 → EMOJI_USER

→ EMOJI_SUCCESS

→ EMOJI_FAIL

⬅️ → EMOJI_BACK

➡️ → EMOJI_NEXT

### Example

Before:

f" Welcome"

After:

f'<tg-emoji emoji-id="{EMOJI_BULLET}"></tg-emoji> Welcome'

Before:

" Success"

After:

f'<tg-emoji emoji-id="{EMOJI_SUCCESS}"></tg-emoji> Success'

Apply throughout all messages, captions, alerts, notifications, menus, and descriptions.

## STYLE RULES

- Use premium emoji tags only.
- Keep all original text.
- Keep formatting intact.
- Keep parse mode compatibility.
- Keep TPY syntax unchanged.
- Keep button positions unchanged.
- Keep callback_data unchanged.
- Keep command handlers unchanged.

## OUTPUT RULE

Return ONLY the fully upgraded TPY code.

No explanations.

No notes.

No comments.

No markdown fences.

Credit:
t.me/TeleBotCreatorCodes
8👍1👏1
Next Bot 💯% Free 🆓

Let's talk the autopay coin name do u like (comment now)?
13👍4👾4
If u want any crypto coin auto pay or your own token auto pay u can dm me & paid

🤝💖 Proper working everything so no problem with lowest fees .

@IncomeTeamAdmin
7🔥1👏1
🔥 Need Broadcast Code?

Broadcast to all your bots at the same time within seconds! ⚡️

Unlimited Broadcasting
Fast & Reliable
Multi-Bot Support
No Restrictions
1❤‍🔥106🤷‍♂2😐21🥰1
Hello mom 📞
Mom: Say yes 🙂
Me: I got a wife🙈
Mom: What does a wife do 🤔
Me: She's reading my post😁
🤡85😁1😭1
Make your safetegard ai bot try this prompt it u can use with API and guard it on your group for stop abuse word and bad language promotion etc

You are "StrictGuard AI" — an extremely strict, accurate, and intelligent Content Moderation & Analysis AI. Your only job is to thoroughly analyze any text, post, comment, message, or content provided by the user and detect all types of harmful, illegal, or inappropriate content.

### Detection Categories:
1. **Illegal Content** — Drugs, weapons, fraud, hacking, theft, terrorism, human trafficking, gambling, money laundering, or any illegal activities.
2. **18+ / Explicit / Sexual Content** — Pornography, sexual acts, nudity, explicit descriptions, sexual suggestions (direct or implied).
3. **Profanity / Bad Language / Abuse** — Swear words, vulgar language, hate speech, insults — in **ANY language** (English, Bengali, Hindi, Arabic, Spanish, Chinese, slang, Romanized Bengali, code-mixing, etc.).
4. **Promotional / Spam** — Excessive promotion, ads, link farming, scam links, "follow me", "like and share", sales pitches with too many emojis.
5. **Hate Speech / Discrimination** — Content targeting race, religion, gender, nationality, community, or political hate.
6. **Violence / Threat / Self-harm** — Threats, violent content, suicide encouragement, or harmful intent.
7. **Misinformation / Fake News** — Clearly false information that can cause harm.
8. **Other Risks** — Any risky, uncomfortable, or platform policy-violating content.

### Analysis Rules:
- Read every input carefully and understand the full context, not just individual words.
- Detect profanity and vulgarity in any language, even if disguised with stars (*), spaces, emojis, or creative spelling.
- Catch code-mixing (Bengali + English), Romanized text, slang, and abbreviations.
- If there is even slight suspicion, mark it as Unsafe and explain why.
- Never approve anything that has even a small risk. Be very strict.

### Output Format (Always use exactly this format):

**Verdict:** SAFE / UNSAFE

**Risk Level:** Low / Medium / High / Critical

**Detected Violations:**
- Category 1: ...
- Category 2: ...

**Explanation:** (Detailed reason why it is safe or unsafe, mentioning specific words or sentences)

**Recommendation:** (Delete / Warn / Allow / Review needed)

If multiple categories are violated, list all of them.

Never give moral lectures or advice. Stay completely neutral and strictly analytical. Your goal is to keep the platform 99.9% safe.
5❤‍🔥2
TᴇʟᴇBᴏᴛ Cʀᴇᴀᴛᴏʀ Cᴏᴅᴇs
Make your safetegard ai bot try this prompt it u can use with API and guard it on your group for stop abuse word and bad language promotion etc You are "StrictGuard AI" — an extremely strict, accurate, and intelligent Content Moderation & Analysis AI. Your…
🚀 NEW BOT ALERT! 🚀

SafeGuard Analyze Bot is now LIVE and ready to protect your groups!

100% FREE – No hidden charges, no paid plans. Just pure AI power for your community.

─────────────────────
🔍 WHAT THIS BOT CAN DO FOR YOU
─────────────────────

1️⃣ 🗣️ Bad Word & Abuse Detector
Automatically deletes profanity, insults, and personal attacks – in ANY language (Bengali, Hindi, Urdu, Arabic, English, and more).

2️⃣ 🔞 18+ Content Blocker
Removes explicit sexual content, nudity, and inappropriate adult material instantly.

3️⃣ 🛑 Spam & Promo Killer
Blocks unwanted advertisements, scam links, "follow me" messages, and repetitive promotions.

4️⃣ ⚠️ Hate Speech & Violence Filter
Flags and removes racial/religious slurs, threats, bullying, and self-harm content.

5️⃣ 🌍 Multi‑Language & Transliteration Expert
Understands Romanized Bengali (e.g., "Vi Kemon asen" = "Brother, how are you?"), Hindi (e.g., "Kaise ho"), Arabic, and 100+ others – so it NEVER deletes polite greetings or normal chats.

6️⃣ 🧠 Smart Context Analysis
Powered by advanced AI that reads meaning, not just keywords – ensuring zero false deletions.

7️⃣ Auto‑Clean Warnings
Sends a friendly warning when something is deleted, and automatically removes that warning after 2 minutes – keeping your group tidy.

─────────────────────
ADD TO YOUR GROUP NOW
─────────────────────
Click the link below and select your group:

👉 https://t.me/SafeGardAnylayzeBot?startgroup=true 👈

🔧 Quick Setup:
1. Click the link above.
2. Choose your group from the list.
3. Grant the bot "Admin" rights with "Delete Messages" permission.
4. Done! The bot starts working immediately.

─────────────────────
💡 No payment. No subscription. Just smart moderation – forever free.
─────────────────────

👥 Make your group safer, cleaner, and more enjoyable for everyone – today!

👾 For more @SafeGardAnylayzeBot
7👍1
Need this dice tbc bot ?

Comment now 👾🤫
💩136🤣3👍2🤡2❤‍🔥1
docs1.txt
38.7 KB
tbc ai fully doc file smooth working 👏🏻

Use it in another free ai deepseek grok etc ✊🏻
3
🎉 Good News! 🗞

Auto Star Send Bot is now working perfectly!

🎥 Setup Video:
https://t.me/TeleBotCreatorCodes/109

━━━━━━━━━━━━━━
💎 TON Auto Pay Bot is also working!
🎥 Setup Video:
https://t.me/TeleBotCreatorCodes/124
━━━━━━━━━━━━━━

💰 More Auto Pay Coins Available
✔️ BSC (USDT)
✔️ More networks can be added on request.

🚀 Need any cryptocurrency or your own custom token with an Auto Pay system?

📩 Contact: @IncomeTeamAdmin
i
5🔥1