Script to fix stuff

import os

save_path = os.path.expanduser(“~/Desktop/telegram-bots”)
os.makedirs(save_path, exist_ok=True)

bots = {
“texcoolbot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘7464269358:AAEcUuwyX77QOAh6i_NJyPcYfNfhLreu3Lw’ PAYMENT_LINK = ‘https://ray2407.github.io/texcool/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
await update.message.reply_text(“💸 Welcome to TEXCOOLBot!\\n/pay – Show payment link”)

async def pay(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”Pay here: {PAYMENT_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“pay”, pay))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,

“ray2fb_bot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘8056349243:AAH7CVgBx5_ese73xjCg3ah71T6-NlrOeaI’ FB_LANDING_LINK = ‘https://ray2407.github.io/ray2fb/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
await update.message.reply_text(“👋 Ray2FB Bot\\n/funnel – Launch Facebook funnel”)

async def funnel(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”🚀 {FB_LANDING_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“funnel”, funnel))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,

“my0724_bot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘7355656881:AAEe3hHYjDAlg6aVQ8Iw8M125qxqBxlnYK4’ DAILY_LINK = ‘https://ray2407.github.io/0724/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(“📅 0724 Bot\\n/daily – Today’s link”)

async def daily(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”🔗 {DAILY_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“daily”, daily))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,

“rayhackettbot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘6827724397:AAHAnz_77_IYZRZTT8VULEhyal1oJBe_Muw’ DAD_LINK = ‘https://ray2407.github.io/rayhackett/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
await update.message.reply_text(“👋 Ray Hackett Bot\\n/dadvice – Daily insight”)

async def dadvice(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”💬 {DAD_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“dadvice”, dadvice))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’
}

# Save each .py script
for filename, content in bots.items():
full_path = os.path.join(save_path, filename)
with open(full_path, “w”) as file:
file.write(content.strip())
print(f”✅ Saved {filename}”)

# Save requirements.txt
with open(os.path.join(save_path, “requirements.txt”), “w”) as f: f.write(“python-telegram-bot==20.3\n”)

# Save launcher.sh
with open(os.path.join(save_path, “launcher.sh”), “w”) as f: f.write(“””#!/bin/bash
echo “Launching TEXCOOLBot…”
python3 texcoolbot.py
“””)

print(“📁 All files are ready in ~/Desktop/telegram-bots”)

Self saving script

import os

# Directory to save scripts
save_path = os.path.expanduser(“~/Desktop/telegram-bots”)
os.makedirs(save_path, exist_ok=True)

bots = {
“texcoolbot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘7464269358:AAEcUuwyX77QOAh6i_NJyPcYfNfhLreu3Lw’ PAYMENT_LINK = ‘https://ray2407.github.io/texcool/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(
“💸 Welcome to TEXCOOLBot!\n/pay – Show payment link”
)

async def pay(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”Pay here: {PAYMENT_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“pay”, pay))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,

“ray2fb_bot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘8056349243:AAH7CVgBx5_ese73xjCg3ah71T6-NlrOeaI’ FB_LANDING_LINK = ‘https://ray2407.github.io/ray2fb/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(
“👋 Ray2FB Bot\n/funnel – Launch Facebook funnel”
)

async def funnel(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”🚀 {FB_LANDING_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“funnel”, funnel))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,

“my0724_bot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘7355656881:AAEe3hHYjDAlg6aVQ8Iw8M125qxqBxlnYK4’ DAILY_LINK = ‘https://ray2407.github.io/0724/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(“📅 0724 Bot\n/daily – Today’s link”)

async def daily(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”🔗 {DAILY_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“daily”, daily))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,

“rayhackettbot.py”: ”’
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

BOT_TOKEN = ‘6827724397:AAHAnz_77_IYZRZTT8VULEhyal1oJBe_Muw’ DAD_LINK = ‘https://ray2407.github.io/rayhackett/

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
await update.message.reply_text(“👋 Ray Hackett Bot\n/dadvice – Daily insight”)

async def dadvice(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(f”💬 {DAD_LINK}”)

def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()
app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“dadvice”, dadvice))
app.run_polling()

if __name__ == ‘__main__’:
main()
”’,
}

# Save all scripts
for filename, content in bots.items():
full_path = os.path.join(save_path, filename)
with open(full_path, “w”) as file:
file.write(content.strip())
print(f”✅ Saved {filename} to Desktop/telegram-bots”)

# Save requirements.txt
with open(os.path.join(save_path, “requirements.txt”), “w”) as f: f.write(“python-telegram-bot==20.3\n”)

# Save a simple launcher
with open(os.path.join(save_path, “launcher.sh”), “w”) as f: f.write(“””#!/bin/bash
echo “Launching TEXCOOLBot…”
python3 texcoolbot.py
“””)

print(“📁 All files ready in Desktop/telegram-bots”)

Telegram robot script

from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes

# 🔐 Replace this with your actual token
BOT_TOKEN = ‘PASTE-YOUR-TELEGRAM-BOT-TOKEN-HERE’

# 🔗 Your default links
PAYPAL_LINK = ‘https://paypal.me/yourlink
COINBASE_LINK = ‘https://commerce.coinbase.com/checkout/yourcode‘ PWA_GENERATOR_LINK = ‘https://ray2407.github.io/pwa-maker/

# 🟢 Command Handlers
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(
“👋 Welcome to TEXCOOLBot!\n\nCommands:\n/getlink – Payment Links\n/createpwa – Make Landing Pages\n/help – Show Commands” )

async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(
“/start – Start bot\n/getlink – Payment links\n/createpwa – PWA Generator\n/help – Help” )

async def getlink(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(
f”💸 Payment Links:\nPayPal: {PAYPAL_LINK}\nCoinbase: {COINBASE_LINK}” )

async def createpwa(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(
f”🚀 Launch the PWA Generator here:\n{PWA_GENERATOR_LINK}” )

# 🧠 Main App
def main():
app = ApplicationBuilder().token(BOT_TOKEN).build()

app.add_handler(CommandHandler(“start”, start))
app.add_handler(CommandHandler(“help”, help_command))
app.add_handler(CommandHandler(“getlink”, getlink))
app.add_handler(CommandHandler(“createpwa”, createpwa))

print(“🤖 TEXCOOLBot is running…”)
app.run_polling()

if __name__ == ‘__main__’:
main()

YAML

name: Auto CNAME Reclaim

on:
push:
schedule:
– cron: ‘0 * * * *’

jobs:
reclaim:
runs-on: ubuntu-latest
steps:
– uses: actions/checkout@v3
– name: Ensure correct CNAME
run: |
echo “rayis.me” > CNAME
git config user.name “RayBot”
git config user.email “crh2123@icloud.com”
git add CNAME
git commit -m “Re-assert CNAME” || echo “No changes” git push origin main || echo “Already up-to-date”

Solar NowNow