Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from pypresence import Presence
- import time
- import random
- client_id = ' ' # Para crear un client_id ves a: https://discord.com/developers/applications
- RPC = Presence(client_id)
- RPC.connect()
- Mensaje = [
- "FORTNITE",
- "BARÇA",
- "FCB",
- "MESSI"
- ]
- while True:
- RPC.update(details="txt", state=random.choice(Mensaje))
- time.sleep(0.5) #Tiempo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement