Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.3 kB
2
Indexable
Never
from telegram.ext import Updater, CommandHandler
import subprocess
import multiprocessing

# Ganti dengan token bot Telegram Anda
TOKEN = '6405256662:AAECOz2Xs7_BrfnAPlPyzZt9HWt3iontuTM'

# Fungsi untuk membuka aplikasi Shopee dalam proses baru
def open_shopee(update=None):
    try:
        # Jalur ke file .exe Shopee yang akan dibuka
        file_path = r'C:\Users\Administrator\Desktop\bot_shopee_v4.0.2.7\Shopee Voucher.exe'
        
        # Buka file .exe Shopee dalam proses baru
        subprocess.Popen(file_path, shell=True)
        
        if update:
            update.message.reply_text(f"Membuka aplikasi Shopee...")
    except Exception as e:
        if update:
            update.message.reply_text(f"Gagal membuka aplikasi Shopee: {str(e)}")
        else:
            print(f"Gagal membuka aplikasi Shopee: {str(e)}")

# Fungsi untuk menangani perintah /run_bot
def run_bot(update, context):
    # Jalankan fungsi open_shopee dalam proses baru
    process = multiprocessing.Process(target=open_shopee, args=(update,))
    process.start()

def main():
    updater = Updater(token=TOKEN, use_context=True)
    dp = updater.dispatcher

    dp.add_handler(CommandHandler("run_bot", run_bot))

    updater.start_polling()
    updater.idle()

if name == "main":
    main()