Forwarded from Income Tips 24 ️ (Albert Sadiq)
Pieverse ~ Step 5 — Send Red Packets ✨
Inside the Red Packet Race page, you’ll find prepared prompts for:
- sending red packets;
- claiming red packets.
There is no minimum transfer amount. Users who want to increase activity volume can independently fund their linked wallets at any time.
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Vasu 🦋
# PieDrop Auto Recycle Bot 😄
A simple Telegram + Telethon automation bot for Pieverse / Purr-Fect Claw.
## Features
✅ Detect incoming redpackets
✅ Auto claim all redpackets
✅ Wait 10 seconds
✅ Check actual claimed amount
✅ ONLY resend if claimed amount >= 0.1 USDT0
✅ Auto send back 0.11$
✅ Ignores small packets
✅ Runs on Termux / VPS
---
# Requirements
pkg update -y
pkg install python -y
pip install telethon
---
Create config.py
API_ID = 12345678
API_HASH = "your_api_hash"
REAL_BOT = "RealPurrfectBot"
Get API credentials: https://my.telegram.org
---
Main Script (faucetusdt.py)
import re
import asyncio
from config import *
from telethon import TelegramClient, events
client = TelegramClient(
"session",
API_ID,
API_HASH
)
last_sender = None
# ======================
@client.on(events.NewMessage(chats=REAL_BOT))
async def handler(event):
global last_sender
text = event.raw_text
print("\n===================")
print(text)
print("===================\n")
try:
# DETECT INCOMING REDPACKET
if "You got a redpacket from" in text:
user_match = re.search(
r"from ([a-zA-Z0-9_]+\.pie)",
text
)
if not user_match:
return
username = user_match.group(1)
last_sender = username
print(f"Incoming packet from {username}")
# CLAIM ALL
await client.send_message(
REAL_BOT,
"Claim all redpackets"
)
print("Claim command sent")
# DETECT CLAIM RESULT
elif "Claimed!" in text:
amount_match = re.search(
r"Claimed!\s*([\d.]+)\s*USDT0",
text
)
sender_match = re.search(
r"from ([a-zA-Z0-9_]+\.pie)",
text
)
if not amount_match:
return
amount = float(
amount_match.group(1)
)
print(f"Claimed amount: {amount}")
# ONLY IF >= 0.1
if amount >= 0.1:
print("Valid claim amount")
await asyncio.sleep(10)
username = (
sender_match.group(1)
if sender_match
else last_sender
)
if username:
await client.send_message(
REAL_BOT,
f"Send 0.11$ {username}"
)
print(
f"Sent 0.11$ to {username}"
)
else:
print(
"Ignored: claim less than 0.1"
)
except Exception as e:
print(e)
# ======================
async def main():
await client.start()
print(
"Smart recycle bot running..."
)
await client.run_until_disconnected()
# ======================
asyncio.run(main())
---
Run Bot
python faucetusdt.py
---
Logic
Incoming Packet
↓
Claim all redpackets
↓
Wait 10 sec
↓
Read claimed amount
↓
If amount >= 0.1
↓
Send 0.11$
---
Notes
Requires small OKB for gas on X Layer
Works on Termux and VPS
Keep Termux running for 24/7 usage
Use responsibly
A simple Telegram + Telethon automation bot for Pieverse / Purr-Fect Claw.
## Features
✅ Detect incoming redpackets
✅ Auto claim all redpackets
✅ Wait 10 seconds
✅ Check actual claimed amount
✅ ONLY resend if claimed amount >= 0.1 USDT0
✅ Auto send back 0.11$
✅ Ignores small packets
✅ Runs on Termux / VPS
---
# Requirements
`bashpkg update -y
pkg install python -y
pip install telethon
---
Create config.py
API_ID = 12345678
API_HASH = "your_api_hash"
REAL_BOT = "RealPurrfectBot"
Get API credentials: https://my.telegram.org
---
Main Script (faucetusdt.py)
import re
import asyncio
from config import *
from telethon import TelegramClient, events
client = TelegramClient(
"session",
API_ID,
API_HASH
)
last_sender = None
# ======================
@client.on(events.NewMessage(chats=REAL_BOT))
async def handler(event):
global last_sender
text = event.raw_text
print("\n===================")
print(text)
print("===================\n")
try:
# DETECT INCOMING REDPACKET
if "You got a redpacket from" in text:
user_match = re.search(
r"from ([a-zA-Z0-9_]+\.pie)",
text
)
if not user_match:
return
username = user_match.group(1)
last_sender = username
print(f"Incoming packet from {username}")
# CLAIM ALL
await client.send_message(
REAL_BOT,
"Claim all redpackets"
)
print("Claim command sent")
# DETECT CLAIM RESULT
elif "Claimed!" in text:
amount_match = re.search(
r"Claimed!\s*([\d.]+)\s*USDT0",
text
)
sender_match = re.search(
r"from ([a-zA-Z0-9_]+\.pie)",
text
)
if not amount_match:
return
amount = float(
amount_match.group(1)
)
print(f"Claimed amount: {amount}")
# ONLY IF >= 0.1
if amount >= 0.1:
print("Valid claim amount")
await asyncio.sleep(10)
username = (
sender_match.group(1)
if sender_match
else last_sender
)
if username:
await client.send_message(
REAL_BOT,
f"Send 0.11$ {username}"
)
print(
f"Sent 0.11$ to {username}"
)
else:
print(
"Ignored: claim less than 0.1"
)
except Exception as e:
print(e)
# ======================
async def main():
await client.start()
print(
"Smart recycle bot running..."
)
await client.run_until_disconnected()
# ======================
asyncio.run(main())
---
Run Bot
python faucetusdt.py
---
Logic
Incoming Packet
↓
Claim all redpackets
↓
Wait 10 sec
↓
Read claimed amount
↓
If amount >= 0.1
↓
Send 0.11$
---
Notes
Requires small OKB for gas on X Layer
Works on Termux and VPS
Keep Termux running for 24/7 usage
Use responsibly
❤2
Forwarded from Sailent MirZa
Ya group ma dal du jo jitna amount send kra ga ma utna return kr do ga
Tipsdeck
My bot working behind me . I like it . I build it . I love it 🤩 But u need to send minimum 0.1$ to tipsdeck.pie then bot return you 0.1$ automatic distribution 🫡🤩
Vasu 🦋:
https://usdt0.to/?utm_source=chatgpt.com
Yha s usdt0 buy kr
Arb usdt s x layer usdt m swap kr yha.
Credits are limited so do bigger amounts transaction .. invest 1-2-3$ per ac ..
Transaction with each other 5-10$/transa... Trusted only 🫡 invited personal based 🫡
https://usdt0.to/?utm_source=chatgpt.com
Yha s usdt0 buy kr
Arb usdt s x layer usdt m swap kr yha.
Credits are limited so do bigger amounts transaction .. invest 1-2-3$ per ac ..
Transaction with each other 5-10$/transa... Trusted only 🫡 invited personal based 🫡
Forwarded from Purr-Fect Claw
👋 Hello! Just wrapped up a big red packet session today!
- Sent: ~2.92 USDT0 total across 41+ packets
- Claimed back: ~23 red packets from friends (0.112 USDT0 just now from rahulyadav.pie)
Got 0.11499 USDT0 left in your wallet — enough for a couple more small packets if you'd like to keep the gifting going! 🧧
What would you like to do next?
- Sent: ~2.92 USDT0 total across 41+ packets
- Claimed back: ~23 red packets from friends (0.112 USDT0 just now from rahulyadav.pie)
Got 0.11499 USDT0 left in your wallet — enough for a couple more small packets if you'd like to keep the gifting going! 🧧
What would you like to do next?
Be ready 🤞
If u want usdt0 direct in pie username .. send any asset worth 0.5$ minimum .. get usdt0 in ac ..( new user who only want to join and try gifting box 🎁 ).
Start doing gifting with your friends 😉 no fees no charge .. helping purpose ...
Pro user depo 1-2$ .. transa with me with high amount .. create Volume based rank and try to manage rank ..
Got it? .. holaaa army 🪖 🤞🫡🥶
tipsdeck.pieIf u want usdt0 direct in pie username .. send any asset worth 0.5$ minimum .. get usdt0 in ac ..( new user who only want to join and try gifting box 🎁 ).
Start doing gifting with your friends 😉 no fees no charge .. helping purpose ...
Pro user depo 1-2$ .. transa with me with high amount .. create Volume based rank and try to manage rank ..
Got it? .. holaaa army 🪖 🤞🫡🥶
Forwarded from Purr-Fect Claw
3.230942 USDT0 — looks like your deposit went through! 🚀💰
That's enough for plenty more red packets:
- 29× 0.11 USDT0 sends 🧧
- 5× 0.58 USDT0 sends
- 3× 1 USDT0 sends
Ready to keep the gifting going? 🔥
That's enough for plenty more red packets:
- 29× 0.11 USDT0 sends 🧧
- 5× 0.58 USDT0 sends
- 3× 1 USDT0 sends
Ready to keep the gifting going? 🔥
Purr-Fect Claw
3.230942 USDT0 — looks like your deposit went through! 🚀💰 That's enough for plenty more red packets: - 29× 0.11 USDT0 sends 🧧 - 5× 0.58 USDT0 sends - 3× 1 USDT0 sends Ready to keep the gifting going? 🔥
Pieverse ..
All user's i already choose who have ac
All wee need to enter in a private chat or send gifts to each other..
Hope we all Cook good 👍😊
All user's i already choose who have ac
All wee need to enter in a private chat or send gifts to each other..
Hope we all Cook good 👍😊