Tipsdeck
https://www.pieverse.io/r/BFXHFD https://www.pieverse.io/r/BFXHFD
tipsdeck.pie ๐ซก Skillsโค2
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 ๐๐
Forwarded from Purr-Fect Claw
It's daily โ every UTC day (midnight to midnight) there's a fresh leaderboard with its own rewards pool.
Here's what you've earned so far today:
- #100 today โ ~42.57 PIEVERSE (~$31.54)
- ๐ Up 144 spots from yesterday
So if you keep sending & receiving every day, you earn rewards each day. New day = new leaderboard = new shot at rewards. ๐
Also, there's a total campaign leaderboard (since May 21) for the full race โ but the daily rewards are what pay out per day. Want me to check your total campaign rank too?
Here's what you've earned so far today:
- #100 today โ ~42.57 PIEVERSE (~$31.54)
- ๐ Up 144 spots from yesterday
So if you keep sending & receiving every day, you earn rewards each day. New day = new leaderboard = new shot at rewards. ๐
Also, there's a total campaign leaderboard (since May 21) for the full race โ but the daily rewards are what pay out per day. Want me to check your total campaign rank too?
๐1
Forwarded from Purr-Fect Claw
Here's your Total Campaign stats (since May 21):
๐ Overall Rank: #70 โ
- 63 sends ยท 51 received ยท total: ~39.65 USDT0
- Score: 8,467
-
- ๐ Up 208 spots vs yesterday
So you're getting paid daily + a total campaign reward at the end:
- Daily (today #100): ~42.57 PIEVERSE (~$31.54)
- Campaign (#70): ~72.97 PIEVERSE (~$54.07)
The more you send & receive, the higher you climb on both! ๐
๐ Overall Rank: #70 โ
tipsdeck.pie- 63 sends ยท 51 received ยท total: ~39.65 USDT0
- Score: 8,467
-
rewards_pieverse: 72.97 PIEVERSE (~$54.07)- ๐ Up 208 spots vs yesterday
So you're getting paid daily + a total campaign reward at the end:
- Daily (today #100): ~42.57 PIEVERSE (~$31.54)
- Campaign (#70): ~72.97 PIEVERSE (~$54.07)
The more you send & receive, the higher you climb on both! ๐