-
Автор темы
- #1
Ам.. Сливаю свой код :)
Python:
import time
from pypresence import Presence
[URL='https://media.discordapp.net/attachments/1274586974698606654/1280868370467655702/image.png?ex=66d9a520&is=66d853a0&hm=af9251e33e7eac5b3254c7404f5f7d8695432b2b508ea28e7b53c68755a3fbf4&=&format=webp&quality=lossless&width=461&height=225']ss[/URL]
client_id = '1278582098592272396' # Кто бибизян и не знает, как сделать отображение закихоидет на сайт discord developer portal создаете бота и копируете его айди.. и все
RPC = Presence(client_id)
RPC.connect()
def set_custom_rpc(url, text1, text2, hours):
start_time = int(time.time()) - (hours * 3600) # Время начала в секундах
RPC.update(
large_image=url,
large_text=text1,
details=text1,
state=text2,
start=start_time
)
url = "https://i.pinimg.com/originals/2a/28/2a/2a282acb0d0824ff83204e4f7beb15bc.gif"
text1 = "Kiski Wiksi"
text2 = "UID: 00001"
hours = 1
set_custom_rpc(url, text1, text2, hours)
while True:
time.sleep(15)