forked from PoligonTeam/cenzura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresence.fem
29 lines (22 loc) · 1014 Bytes
/
presence.fem
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
set_update_interval("10s")
# set_random_presence(true)
import random
guilds = gateway.guilds
guilds = len(guilds)
guilds = str(guilds)
users = gateway.users
users = len(users)
users = str(users)
guilds_text = guilds + " serwerów"
users_text = users + " użytkowników"
u200b = hex("200b")
blank = chr(u200b)
number = random_int(1, 100)
number = str(number)
add_presence(guilds_text, status_type: StatusTypes.DND, activity_type: ActivityTypes.WATCHING)
add_presence(users_text, status_type: StatusTypes.DND, activity_type: ActivityTypes.LISTENING)
add_presence("poligon.lgbt", status_type: StatusTypes.DND, activity_type: ActivityTypes.WATCHING)
add_presence("fortnite", status_type: StatusTypes.DND, activity_type: ActivityTypes.PLAYING)
add_presence("senis", status_type: StatusTypes.DND, activity_type: ActivityTypes.LISTENING)
add_presence(blank, status_type: StatusTypes.DND, activity_type: ActivityTypes.PLAYING)
add_presence(number, status_type: StatusTypes.DND, activity_type: ActivityTypes.PLAYING)