-
Notifications
You must be signed in to change notification settings - Fork 3
/
presence.fem
73 lines (56 loc) · 1.63 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
set_update_interval("10s");
# set_random_presence(true);
data = await(request("GET", "https://astolfo.poligon.lgbt/api/startit"));
joke = data.json.joke;
if { guilds != "0" } {
add_presence {
borrow(guilds, StatusTypes, ActivityTypes);
name = format("{} guilds", &guilds);
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.WATCHING;
};
}
if { users != "0" } {
add_presence {
borrow(users, StatusTypes, ActivityTypes);
name = format("{} users", &users);
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.LISTENING;
};
}
add_presence {
borrow(StatusTypes, ActivityTypes);
name = "poligon.lgbt";
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.WATCHING;
};
add_presence {
borrow(StatusTypes, ActivityTypes);
name = "fortnite";
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.PLAYING;
};
add_presence {
borrow(StatusTypes, ActivityTypes);
name = "femboy moaning asmr";
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.LISTENING;
};
add_presence {
borrow(StatusTypes, ActivityTypes);
name = str(randint(1, 100, true));
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.PLAYING;
};
add_presence {
borrow(joke, StatusTypes, ActivityTypes);
name = &joke;
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.PLAYING;
};
add_presence {
borrow(StatusTypes, ActivityTypes);
name = "automaty";
status_type = &StatusTypes.ONLINE;
activity_type = &ActivityTypes.PLAYING;
};