Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Barry
/
discordbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
6c38afa3
authored
2016-01-24 10:20:17 +0000
by
Barry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed whoplayed.
1 parent
8c05f710
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
27 deletions
db.sqlite3
hellsbot.py
members.json
db.sqlite3
View file @
6c38afa
No preview for this file type
hellsbot.py
View file @
6c38afa
...
...
@@ -24,8 +24,8 @@ conn = sqlite3.connect('db.sqlite3')
member_status
=
'members.json'
deliveries_file
=
'deliveries.json'
fortune_file
=
'fortunes.json'
joke_file
=
'jokes.json'
#
fortune_file = 'fortunes.json'
#
joke_file = 'jokes.json'
games_file
=
'games.json'
credentials
=
'creds.json'
...
...
@@ -475,15 +475,18 @@ Stuff:
for
game
in
data
:
if
game
[
'name'
]
.
lower
()
==
game_name
.
lower
():
game_id
=
game
[
'id'
]
if
game_id
==
0
:
client
.
send_message
(
message
.
channel
,
'I don
\'
t have any data on {} yet {}'
.
format
(
game_name
,
message
.
author
.
mention
()))
return
#
if game_id == 0:
# #
client.send_message(message.channel, 'I don\'t have any data on {} yet {}'.format(game_name, message.author.mention()))
# #
return
matched_usernames
=
[]
for
username
in
member_data
:
if
'games_played'
in
member_data
[
username
]:
for
id
in
member_data
[
username
][
'games_played'
]:
if
id
==
game_
id
or
id
==
game_name
:
if
id
==
game_
name
or
(
id
==
game_id
and
game_id
!=
0
)
:
matched_usernames
.
append
(
username
)
if
len
(
matched_usernames
)
==
0
:
client
.
send_message
(
message
.
channel
,
'I don
\'
t have any data on {} yet {}'
.
format
(
game_name
,
message
.
author
.
mention
()))
else
:
client
.
send_message
(
message
.
channel
,
'I have seen {} playing: {}'
.
format
(
', '
.
join
(
matched_usernames
),
game_name
))
return
...
...
@@ -558,39 +561,36 @@ Stuff:
if
message
.
content
.
startswith
(
'!addfortune'
):
try
:
json_data
=
open
(
fortune_file
)
.
read
()
data
=
json
.
loads
(
json_data
)
except
ValueError
:
data
=
[]
if
not
data
:
data
=
[]
try
:
if
'aa737a5846'
in
message
.
content
[
12
:]:
fortune
=
message
.
content
[
9
:]
if
'aa737a5846'
in
fortune
:
client
.
send_message
(
message
.
channel
,
'{} you stop it, you are a pedofile, stop looking at little girls.'
.
format
(
message
.
author
.
mention
()))
return
data
.
append
(
byteify
(
message
.
content
[
12
:]))
jdata
=
json
.
dumps
(
data
,
ensure_ascii
=
False
)
date_added
=
datetime
.
datetime
.
now
()
.
strftime
(
'
%
Y/
%
m/
%
d
%
H:
%
M:
%
S'
)
c
=
conn
.
cursor
()
c
.
execute
(
"INSERT INTO fortunes (fortune, date_added) VALUES (?, ?)"
,
(
fortune
,
date_added
))
conn
.
commit
()
print
(
"Added fortune"
)
except
Exception
as
e
:
print
e
.
message
client
.
send_message
(
message
.
channel
,
'Your shitty fortune has been rejected {}.'
.
format
(
message
.
author
.
mention
()))
return
open
(
fortune_file
,
'wb+'
)
.
write
(
jdata
.
encode
(
'utf8'
))
client
.
send_message
(
message
.
channel
,
'Your shitty fortune has been added {}.'
.
format
(
message
.
author
.
mention
()))
return
if
message
.
content
.
startswith
(
'!fortune'
):
data
=
None
fortune
=
None
try
:
json_data
=
open
(
fortune_file
)
.
read
()
data
=
json
.
loads
(
json_data
)
except
ValueError
:
c
=
conn
.
cursor
()
fortune
=
c
.
execute
(
"SELECT fortune FROM fortunes ORDER BY RANDOM() LIMIT 1;"
)
.
fetchone
()[
0
]
print
(
fortune
)
except
Exception
as
e
:
print
(
e
)
pass
if
not
data
:
if
not
fortune
:
client
.
send_message
(
message
.
channel
,
'Try adding a fortune with "!addfortune <fortune>" {}!'
.
format
(
message
.
author
.
mention
()))
else
:
client
.
send_message
(
message
.
channel
,
'{} Your fortune is... {}'
.
format
(
message
.
author
.
mention
(),
random
.
choice
(
data
)
.
encode
(
'utf-8'
,
errors
=
'ignore'
)))
client
.
send_message
(
message
.
channel
,
'{} Your fortune is... {}'
.
format
(
message
.
author
.
mention
(),
byteify
(
fortune
)))
return
if
message
.
content
.
startswith
(
'!question'
):
question
=
message
.
content
[
10
:]
...
...
members.json
View file @
6c38afa
{
"zan"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/21 00:33:15"
,
"mention"
:
"<@65178351664377856>"
,
"prev_status"
:
"online"
,
"game_id"
:
"XCOM: Enemy Unknown"
,
"games_played"
:
[
"If My Heart Had Wings"
,
"World of Warcraft"
,
null
,
"XCOM: Enemy Unknown"
],
"afk_at"
:
"2016/01/21 00:33:15"
,
"id"
:
"65178351664377856"
,
"aliases"
:
[]},
"solidsteak"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/20 22:56:01"
,
"mention"
:
"<@62955839694053376>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
248
,
null
,
310
,
533
,
448
,
715
,
1
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 22:56:01"
,
"id"
:
"62955839694053376"
,
"aliases"
:
[]},
"apple"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 01:00:24"
,
"mention"
:
"<@121822410096771072>"
,
"prev_status"
:
"idle"
,
"game_id"
:
"FINAL FANTASY XIV"
,
"games_played"
:
[
1
,
6
,
null
,
"FINAL FANTASY XIV"
,
"Borderlands 2"
],
"afk_at"
:
"2016/01/21 00:41:09"
,
"id"
:
"121822410096771072"
,
"aliases"
:
[]},
"sheik"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:57:10"
,
"mention"
:
"<@48148712194576384>"
,
"prev_status"
:
"idle"
,
"game_id"
:
null
,
"games_played"
:
[
283
,
null
,
5
,
11
,
310
,
249
,
659
,
308
,
6
,
260
,
182
,
"Diablo 3"
,
"Guild Wars 2"
],
"afk_at"
:
"2016/01/20 16:48:14"
,
"id"
:
"48148712194576384"
,
"aliases"
:
[]},
"puncherboxer"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/04 04:11:44"
,
"mention"
:
"<@118544498996412416>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/04 03:48:11"
,
"id"
:
"118544498996412416"
},
"rae"
:
{
"status"
:
"online"
,
"mention"
:
"<@48162082507456512>"
,
"is_afk"
:
false
,
"games_played"
:
[
488
,
null
,
141
,
"Dark Souls II"
,
"Black Desert Online"
],
"game_id"
:
"Dark Souls II"
,
"afk_at"
:
"2016/01/21 00:48:29"
,
"status_change_at"
:
"2016/01/21 01:02:49"
,
"id"
:
"48162082507456512"
,
"prev_status"
:
"idle"
,
"aliases"
:
[]},
"marion"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/03 05:14:48"
,
"prev_status"
:
"online"
,
"games_played"
:
[
1
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2015/12/02 08:30:16"
},
"shyrith"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/03 08:10:52"
,
"prev_status"
:
"online"
,
"games_played"
:
[
1
,
644
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2015/12/02 21:54:35"
},
"hiimapirate"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/12 05:08:57"
,
"mention"
:
"<@133758935009198080>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/20 11:34:43"
,
"id"
:
"133758935009198080"
,
"aliases"
:
[]},
"az"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/15 09:59:41"
,
"mention"
:
"<@127330097949573121>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/19 06:10:40"
,
"id"
:
"127330097949573121"
,
"aliases"
:
[]},
"yung_thirsty"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/12 18:29:27"
,
"mention"
:
"<@136368619423531008>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2016/01/12 07:22:37"
,
"id"
:
"136368619423531008"
,
"aliases"
:
[]},
"goshzilla"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 23:44:06"
,
"mention"
:
"<@47934670406422528>"
,
"prev_status"
:
"idle"
,
"game_id"
:
null
,
"games_played"
:
[
3
,
null
,
6
,
7
,
777
,
"League of Legends"
],
"afk_at"
:
"2016/01/20 23:41:11"
,
"id"
:
"47934670406422528"
,
"aliases"
:
[]},
"herbeh"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/11 10:46:35"
,
"mention"
:
"<@105392869782622208>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2016/01/11 08:46:57"
,
"id"
:
"105392869782622208"
,
"aliases"
:
[]},
"eeri"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/15 06:31:49"
,
"mention"
:
"<@122023217371021313>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
659
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2015/12/15 06:09:09"
,
"id"
:
"122023217371021313"
,
"aliases"
:
[]},
"dick"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 13:17:14"
,
"mention"
:
"<@78767611436863488>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Phantasy Star Online 2"
,
"games_played"
:
[
372
,
null
,
1
,
488
,
"Dark Souls"
,
"Metal Gear Solid V: The Phantom Pain"
,
"Phantasy Star Online 2"
],
"afk_at"
:
"2016/01/20 08:16:18"
,
"id"
:
"78767611436863488"
,
"aliases"
:
[]},
"arka"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 18:25:28"
,
"mention"
:
"<@121466618126532608>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
1
,
null
,
313
,
488
,
"FINAL FANTASY XIV"
],
"game_id"
:
"FINAL FANTASY XIV"
,
"afk_at"
:
"2016/01/20 18:24:58"
,
"id"
:
"121466618126532608"
,
"aliases"
:
[]},
"wriggle"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/16 19:20:41"
,
"mention"
:
"<@80169354666192896>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/02 15:37:49"
,
"id"
:
"80169354666192896"
,
"aliases"
:
[]},
"tim"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/04 10:25:19"
,
"mention"
:
"<@109145030354030592>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/04 07:08:23"
,
"id"
:
"109145030354030592"
},
"charisma"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 23:39:24"
,
"mention"
:
"<@65187139276513280>"
,
"prev_status"
:
"idle"
,
"game_id"
:
"Black Desert Online"
,
"games_played"
:
[
313
,
null
,
807
,
471
,
671
,
728
,
0
,
"Sony Playstation Emulator"
,
"Black Desert Online"
],
"afk_at"
:
"2016/01/20 23:38:44"
,
"id"
:
"65187139276513280"
,
"aliases"
:
[]},
"mate"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/04 09:11:30"
,
"mention"
:
"<@109145154044071936>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/04 05:06:58"
,
"id"
:
"109145154044071936"
},
"sig"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:30:11"
,
"mention"
:
"<@104055037243707392>"
,
"prev_status"
:
"offline"
,
"game_id"
:
"Diablo 3"
,
"games_played"
:
[
8
,
null
,
7
,
466
,
588
,
15
,
6
,
13
,
165
,
669
,
101
,
"Diablo 3"
,
"Tabletop Simulator"
],
"afk_at"
:
"2016/01/17 09:03:09"
,
"id"
:
"104055037243707392"
,
"aliases"
:
[]},
"bunta"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/21 00:49:00"
,
"mention"
:
"<@122520378089275395>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
488
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/21 00:49:00"
,
"id"
:
"122520378089275395"
,
"aliases"
:
[]},
"richter"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/21 00:03:17"
,
"mention"
:
"<@49237234515181568>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[
488
,
null
,
183
,
11
],
"afk_at"
:
"2016/01/21 00:03:17"
,
"id"
:
"49237234515181568"
,
"aliases"
:
[]},
"mr. nelson"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/14 13:35:09"
,
"mention"
:
"<@103311664748707840>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/14 10:25:27"
,
"id"
:
"103311664748707840"
,
"aliases"
:
[]},
"草 goshzilla"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/15 15:28:19"
,
"mention"
:
"<@47934670406422528>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2016/01/15 08:23:14"
,
"id"
:
"47934670406422528"
,
"aliases"
:
[]},
"skeletonhorn"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/03 00:36:39"
,
"prev_status"
:
"offline"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/03 00:36:39"
},
"yoltan"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/08 23:38:09"
,
"mention"
:
"<@122369674808786948>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[
238
,
null
,
307
],
"afk_at"
:
"2015/12/04 16:14:00"
,
"id"
:
"122369674808786948"
,
"aliases"
:
[]},
"rui"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:58:26"
,
"mention"
:
"<@63649222993391616>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
174
,
null
,
660
,
724
,
488
,
149
,
780
,
301
,
438
,
140
,
680
,
"Grand Theft Auto V"
],
"game_id"
:
"Grand Theft Auto V"
,
"afk_at"
:
"2016/01/21 00:51:36"
,
"id"
:
"63649222993391616"
,
"aliases"
:
[]},
"adol"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 22:20:08"
,
"mention"
:
"<@122079633796497409>"
,
"prev_status"
:
"idle"
,
"game_id"
:
"Black Desert Online"
,
"games_played"
:
[
550
,
null
,
1
,
"Black Desert Online"
],
"afk_at"
:
"2016/01/20 22:15:38"
,
"id"
:
"122079633796497409"
,
"aliases"
:
[]},
"roris"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/21 00:46:50"
,
"mention"
:
"<@80876422352076800>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
1
,
null
,
0
,
658
,
345
,
724
,
471
,
269
,
307
,
"Grandia 2"
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/21 00:46:50"
,
"id"
:
"80876422352076800"
,
"aliases"
:
[]},
"projectaria"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 23:59:38"
,
"mention"
:
"<@48146724769763328>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
1
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 23:58:58"
,
"id"
:
"48146724769763328"
,
"aliases"
:
[]},
"moss"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:34:36"
,
"mention"
:
"<@48168872238387200>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
0
,
null
,
1
,
715
,
127
,
206
,
440
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 23:28:15"
,
"id"
:
"48168872238387200"
,
"aliases"
:
[]},
"master of moisture"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/20 10:57:33"
,
"mention"
:
"<@112340697771765760>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/20 10:52:58"
,
"id"
:
"112340697771765760"
,
"aliases"
:
[]},
"hellsbreath:skull:"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/10 15:13:36"
,
"mention"
:
"<@78767557628133376>"
,
"prev_status"
:
"offline"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/10 15:13:36"
,
"id"
:
"78767557628133376"
,
"aliases"
:
[]},
"hellsbreath :skull:"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/10 15:13:50"
,
"mention"
:
"<@78767557628133376>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/10 15:13:50"
,
"id"
:
"78767557628133376"
,
"aliases"
:
[]},
"yobi"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:52:51"
,
"mention"
:
"<@65180855919714304>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[
3
,
null
,
680
,
379
,
"Unity"
,
"World of Warcraft"
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 20:45:10"
,
"id"
:
"65180855919714304"
,
"aliases"
:
[]},
"scoops"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 01:02:12"
,
"mention"
:
"<@65211875771559936>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
347
,
null
,
0
,
644
,
308
,
15
,
3
,
306
,
351
,
"Counter-Strike: Global Offensive"
,
"Rocket League"
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 23:32:57"
,
"id"
:
"65211875771559936"
,
"aliases"
:
[]},
"study"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:46:15"
,
"mention"
:
"<@121821978222002178>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2016/01/21 00:24:20"
,
"id"
:
"121821978222002178"
,
"aliases"
:
[]},
"草 goshzilla 一角"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/17 18:31:46"
,
"mention"
:
"<@47934670406422528>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
"League of Legends"
],
"game_id"
:
"League of Legends"
,
"afk_at"
:
"2016/01/17 18:27:26"
,
"id"
:
"47934670406422528"
,
"aliases"
:
[]},
"grey"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 19:13:11"
,
"mention"
:
"<@48120346410221568>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
550
,
null
,
1
,
208
,
283
,
318
,
"Counter-Strike: Global Offensive"
,
"FINAL FANTASY XIV"
,
"Skyforge"
,
"Dark Souls II"
,
"Crypt of the NecroDancer"
],
"game_id"
:
"Crypt of the NecroDancer"
,
"afk_at"
:
"2016/01/20 10:14:28"
,
"id"
:
"48120346410221568"
,
"aliases"
:
[]},
"hellsbreath"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 21:56:09"
,
"mention"
:
"<@78767557628133376>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
326
,
null
,
660
,
680
,
566
,
441
,
363
,
488
,
246
,
"The Last Remnant"
,
"Phantasy Star Online 2"
,
"FINAL FANTASY XI"
],
"game_id"
:
"FINAL FANTASY XI"
,
"afk_at"
:
"2016/01/20 21:55:49"
,
"id"
:
"78767557628133376"
,
"aliases"
:
[
"Barry"
,
"Ben Killin"
,
"Hellsbreath"
,
"Barry"
,
"Ben Killin"
]},
"green"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/20 23:19:41"
,
"mention"
:
"<@63098846506397696>"
,
"prev_status"
:
"offline"
,
"game_id"
:
"League of Legends"
,
"games_played"
:
[
4
,
null
,
3
,
11
,
"League of Legends"
],
"afk_at"
:
"2016/01/20 04:24:54"
,
"id"
:
"63098846506397696"
,
"aliases"
:
[]},
"azia"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:04:37"
,
"mention"
:
"<@121404665727418368>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 17:00:34"
,
"id"
:
"121404665727418368"
,
"aliases"
:
[]},
"xorfos"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/20 22:46:59"
,
"mention"
:
"<@121019458700443650>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Tales of Zestiria"
,
"games_played"
:
[
430
,
null
,
550
,
140
,
"Dwarf Fortress"
,
"Tales of Zestiria"
],
"afk_at"
:
"2016/01/20 22:46:59"
,
"id"
:
"121019458700443650"
,
"aliases"
:
[]},
"salt"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:45:56"
,
"mention"
:
"<@48140539459010560>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
466
,
8
,
null
,
680
,
588
,
15
,
512
,
260
,
"Hearthstone"
,
"Tabletop Simulator"
],
"game_id"
:
"Hearthstone"
,
"afk_at"
:
"2016/01/21 00:43:03"
,
"id"
:
"48140539459010560"
,
"aliases"
:
[]},
"cae"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/21 00:23:04"
,
"mention"
:
"<@65178683714830336>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[
335
,
null
,
215
,
112
,
274
,
443
,
"Undertale"
],
"game_id"
:
"Undertale"
,
"afk_at"
:
"2016/01/20 14:52:44"
,
"id"
:
"65178683714830336"
,
"aliases"
:
[]}}
\ No newline at end of file
{
"zan"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 09:25:10"
,
"mention"
:
"<@65178351664377856>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"games_played"
:
[
"If My Heart Had Wings"
,
"World of Warcraft"
,
null
,
"XCOM: Enemy Unknown"
,
"Go! Go! Nippon! ~My First Trip to Japan~"
,
"Dragon's Dogma: Dark Arisen"
],
"afk_at"
:
"2016/01/24 09:20:06"
,
"id"
:
"65178351664377856"
,
"aliases"
:
[]},
"solidsteak"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 08:52:15"
,
"mention"
:
"<@62955839694053376>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Rainbow Six Siege"
,
"games_played"
:
[
248
,
null
,
310
,
533
,
448
,
715
,
1
,
"Insurgency"
,
"Rainbow Six Siege"
],
"afk_at"
:
"2016/01/24 08:52:15"
,
"id"
:
"62955839694053376"
,
"aliases"
:
[]},
"apple"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 09:34:37"
,
"mention"
:
"<@121822410096771072>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
1
,
6
,
null
,
"FINAL FANTASY XIV"
,
"Borderlands 2"
],
"game_id"
:
"FINAL FANTASY XIV"
,
"afk_at"
:
"2016/01/24 05:11:24"
,
"id"
:
"121822410096771072"
,
"aliases"
:
[]},
"sheik"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/22 12:56:00"
,
"mention"
:
"<@48148712194576384>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Guild Wars 2"
,
"games_played"
:
[
283
,
null
,
5
,
11
,
310
,
249
,
659
,
308
,
6
,
260
,
182
,
"Diablo 3"
,
"Guild Wars 2"
,
"Metal Gear Solid V: The Phantom Pain"
],
"afk_at"
:
"2016/01/22 12:37:49"
,
"id"
:
"48148712194576384"
,
"aliases"
:
[]},
"puncherboxer"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/04 04:11:44"
,
"mention"
:
"<@118544498996412416>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/04 03:48:11"
,
"id"
:
"118544498996412416"
},
"rae"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 09:55:52"
,
"mention"
:
"<@48162082507456512>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"games_played"
:
[
488
,
null
,
141
,
"Dark Souls II"
,
"Black Desert Online"
,
"Dragon's Dogma: Dark Arisen"
],
"afk_at"
:
"2016/01/24 09:55:52"
,
"id"
:
"48162082507456512"
,
"aliases"
:
[]},
"marion"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/03 05:14:48"
,
"prev_status"
:
"online"
,
"games_played"
:
[
1
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2015/12/02 08:30:16"
},
"shyrith"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/03 08:10:52"
,
"prev_status"
:
"online"
,
"games_played"
:
[
1
,
644
,
null
],
"game_id"
:
null
,
"afk_at"
:
"2015/12/02 21:54:35"
},
"hiimapirate"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/12 05:08:57"
,
"mention"
:
"<@133758935009198080>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/20 11:34:43"
,
"id"
:
"133758935009198080"
,
"aliases"
:
[]},
"az"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/23 06:17:41"
,
"mention"
:
"<@127330097949573121>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/19 06:10:40"
,
"id"
:
"127330097949573121"
,
"aliases"
:
[]},
"yung_thirsty"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 08:36:17"
,
"mention"
:
"<@136368619423531008>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
"League of Legends"
,
"Amnesia: The Dark Descent"
,
"Clicker Heroes"
,
"Crusader Kings II"
],
"game_id"
:
"League of Legends"
,
"afk_at"
:
"2016/01/12 07:22:37"
,
"id"
:
"136368619423531008"
,
"aliases"
:
[]},
"goshzilla"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 09:04:18"
,
"mention"
:
"<@47934670406422528>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
3
,
null
,
6
,
7
,
777
,
"League of Legends"
,
"Monster Hunter Online"
],
"game_id"
:
"Monster Hunter Online"
,
"afk_at"
:
"2016/01/24 09:04:18"
,
"id"
:
"47934670406422528"
,
"aliases"
:
[]},
"herbeh"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/11 10:46:35"
,
"mention"
:
"<@105392869782622208>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2016/01/11 08:46:57"
,
"id"
:
"105392869782622208"
,
"aliases"
:
[]},
"eeri"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/15 06:31:49"
,
"mention"
:
"<@122023217371021313>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[
659
,
null
],
"afk_at"
:
"2015/12/15 06:09:09"
,
"id"
:
"122023217371021313"
,
"aliases"
:
[]},
"dick"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 10:00:54"
,
"mention"
:
"<@78767611436863488>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Black Desert Online"
,
"games_played"
:
[
372
,
null
,
1
,
488
,
"Dark Souls"
,
"Metal Gear Solid V: The Phantom Pain"
,
"Phantasy Star Online 2"
,
"Black Desert Online"
],
"afk_at"
:
"2016/01/24 10:00:54"
,
"id"
:
"78767611436863488"
,
"aliases"
:
[]},
"arka"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 10:13:07"
,
"mention"
:
"<@121466618126532608>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
1
,
null
,
313
,
488
,
"FINAL FANTASY XIV"
],
"game_id"
:
"FINAL FANTASY XIV"
,
"afk_at"
:
"2016/01/24 09:57:47"
,
"id"
:
"121466618126532608"
,
"aliases"
:
[]},
"wriggle"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/16 19:20:41"
,
"mention"
:
"<@80169354666192896>"
,
"prev_status"
:
"online"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/02 15:37:49"
,
"id"
:
"80169354666192896"
,
"aliases"
:
[]},
"tim"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/04 10:25:19"
,
"mention"
:
"<@109145030354030592>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/04 07:08:23"
,
"id"
:
"109145030354030592"
},
"charisma"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 07:23:41"
,
"mention"
:
"<@65187139276513280>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"games_played"
:
[
313
,
null
,
807
,
471
,
671
,
728
,
0
,
"Sony Playstation Emulator"
,
"Black Desert Online"
,
"Dragon's Dogma: Dark Arisen"
],
"afk_at"
:
"2016/01/24 07:23:41"
,
"id"
:
"65187139276513280"
,
"aliases"
:
[]},
"mate"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/04 09:11:30"
,
"mention"
:
"<@109145154044071936>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/04 05:06:58"
,
"id"
:
"109145154044071936"
},
"sig"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/23 13:11:50"
,
"mention"
:
"<@104055037243707392>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
8
,
null
,
7
,
466
,
588
,
15
,
6
,
13
,
165
,
669
,
101
,
"Diablo 3"
,
"Tabletop Simulator"
,
"DOTA 2"
,
"Crusader Kings II"
],
"game_id"
:
"DOTA 2"
,
"afk_at"
:
"2016/01/23 05:03:03"
,
"id"
:
"104055037243707392"
,
"aliases"
:
[]},
"bunta"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 05:09:39"
,
"mention"
:
"<@122520378089275395>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[
488
,
null
],
"afk_at"
:
"2016/01/24 05:09:39"
,
"id"
:
"122520378089275395"
,
"aliases"
:
[]},
"mr. nelson"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/14 13:35:09"
,
"mention"
:
"<@103311664748707840>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/14 10:25:27"
,
"id"
:
"103311664748707840"
,
"aliases"
:
[]},
"草 goshzilla"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/15 15:28:19"
,
"mention"
:
"<@47934670406422528>"
,
"prev_status"
:
"offline"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2016/01/15 08:23:14"
,
"id"
:
"47934670406422528"
,
"aliases"
:
[]},
"skeletonhorn"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/03 00:36:39"
,
"prev_status"
:
"offline"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/03 00:36:39"
},
"yoltan"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/08 23:38:09"
,
"mention"
:
"<@122369674808786948>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
238
,
null
,
307
],
"game_id"
:
null
,
"afk_at"
:
"2015/12/04 16:14:00"
,
"id"
:
"122369674808786948"
,
"aliases"
:
[]},
"rui"
:
{
"status"
:
"online"
,
"mention"
:
"<@63649222993391616>"
,
"is_afk"
:
false
,
"games_played"
:
[
174
,
null
,
660
,
724
,
488
,
149
,
780
,
301
,
438
,
140
,
680
,
"Grand Theft Auto V"
,
"Dragon's Dogma: Dark Arisen"
],
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"afk_at"
:
"2016/01/24 09:55:44"
,
"status_change_at"
:
"2016/01/24 10:04:13"
,
"id"
:
"63649222993391616"
,
"prev_status"
:
"idle"
,
"aliases"
:
[]},
"adol"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 04:45:52"
,
"mention"
:
"<@122079633796497409>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Clicker Heroes"
,
"games_played"
:
[
550
,
null
,
1
,
"Black Desert Online"
,
"Clicker Heroes"
],
"afk_at"
:
"2016/01/24 03:10:24"
,
"id"
:
"122079633796497409"
,
"aliases"
:
[]},
"xorfos"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 06:54:12"
,
"mention"
:
"<@121019458700443650>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Cook, Serve, Delicious!"
,
"games_played"
:
[
430
,
null
,
550
,
140
,
"Dwarf Fortress"
,
"Tales of Zestiria"
,
"Cook, Serve, Delicious!"
],
"afk_at"
:
"2016/01/24 06:54:12"
,
"id"
:
"121019458700443650"
,
"aliases"
:
[]},
"roris"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 08:10:56"
,
"mention"
:
"<@80876422352076800>"
,
"prev_status"
:
"online"
,
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"games_played"
:
[
1
,
null
,
0
,
658
,
345
,
724
,
471
,
269
,
307
,
"Grandia 2"
,
"Black Desert Online"
,
"Dragon's Dogma: Dark Arisen"
],
"afk_at"
:
"2016/01/24 00:50:04"
,
"id"
:
"80876422352076800"
,
"aliases"
:
[]},
"projectaria"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 10:06:36"
,
"mention"
:
"<@48146724769763328>"
,
"prev_status"
:
"idle"
,
"game_id"
:
"Nintendo Emulator"
,
"games_played"
:
[
1
,
null
,
"Nintendo Emulator"
],
"afk_at"
:
"2016/01/24 09:13:15"
,
"id"
:
"48146724769763328"
,
"aliases"
:
[]},
"moss"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 10:15:27"
,
"mention"
:
"<@48168872238387200>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
0
,
null
,
1
,
715
,
127
,
206
,
440
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/20 23:28:15"
,
"id"
:
"48168872238387200"
,
"aliases"
:
[]},
"master of moisture"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/20 10:57:33"
,
"mention"
:
"<@112340697771765760>"
,
"prev_status"
:
"idle"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/20 10:52:58"
,
"id"
:
"112340697771765760"
,
"aliases"
:
[]},
"hellsbreath:skull:"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/10 15:13:36"
,
"mention"
:
"<@78767557628133376>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[],
"game_id"
:
null
,
"afk_at"
:
"2015/12/10 15:13:36"
,
"id"
:
"78767557628133376"
,
"aliases"
:
[]},
"hellsbreath :skull:"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2015/12/10 15:13:50"
,
"mention"
:
"<@78767557628133376>"
,
"prev_status"
:
"offline"
,
"game_id"
:
null
,
"games_played"
:
[],
"afk_at"
:
"2015/12/10 15:13:50"
,
"id"
:
"78767557628133376"
,
"aliases"
:
[]},
"yobi"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 10:14:51"
,
"mention"
:
"<@65180855919714304>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[
3
,
null
,
680
,
379
,
"Unity"
,
"World of Warcraft"
],
"afk_at"
:
"2016/01/24 10:14:51"
,
"id"
:
"65180855919714304"
,
"aliases"
:
[]},
"salt"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 07:12:09"
,
"mention"
:
"<@48140539459010560>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
466
,
8
,
null
,
680
,
588
,
15
,
512
,
260
,
"Hearthstone"
,
"Tabletop Simulator"
,
"Crusader Kings II"
],
"game_id"
:
"Hearthstone"
,
"afk_at"
:
"2016/01/24 06:42:59"
,
"id"
:
"48140539459010560"
,
"aliases"
:
[]},
"study"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 10:14:35"
,
"mention"
:
"<@121821978222002178>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
"FINAL FANTASY XIV"
,
"Rocket League"
,
"Dragon's Dogma: Dark Arisen"
],
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"afk_at"
:
"2016/01/24 10:14:15"
,
"id"
:
"121821978222002178"
,
"aliases"
:
[]},
"草 goshzilla 一角"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/17 18:31:46"
,
"mention"
:
"<@47934670406422528>"
,
"prev_status"
:
"idle"
,
"game_id"
:
"League of Legends"
,
"games_played"
:
[
"League of Legends"
],
"afk_at"
:
"2016/01/17 18:27:26"
,
"id"
:
"47934670406422528"
,
"aliases"
:
[]},
"grey"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/23 03:54:03"
,
"mention"
:
"<@48120346410221568>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[
550
,
null
,
1
,
208
,
283
,
318
,
"Counter-Strike: Global Offensive"
,
"FINAL FANTASY XIV"
,
"Skyforge"
,
"Dark Souls II"
,
"Crypt of the NecroDancer"
,
""
,
"Rocket League"
,
"Dragon's Dogma: Dark Arisen"
],
"game_id"
:
"Dark Souls II"
,
"afk_at"
:
"2016/01/20 10:14:28"
,
"id"
:
"48120346410221568"
,
"aliases"
:
[]},
"hellsbreath"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 10:08:27"
,
"mention"
:
"<@78767557628133376>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[
326
,
null
,
660
,
680
,
566
,
441
,
363
,
488
,
246
,
"The Last Remnant"
,
"Phantasy Star Online 2"
,
"FINAL FANTASY XI"
,
"Rainbow Six Siege"
,
"Tales of Zestiria"
,
"SolForge"
],
"game_id"
:
"SolForge"
,
"afk_at"
:
"2016/01/24 09:04:01"
,
"id"
:
"78767557628133376"
,
"aliases"
:
[
"Barry"
,
"Ben Killin"
,
"Hellsbreath"
,
"Barry"
,
"Ben Killin"
]},
"green"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 06:54:32"
,
"mention"
:
"<@63098846506397696>"
,
"prev_status"
:
"idle"
,
"games_played"
:
[
4
,
null
,
3
,
11
,
"League of Legends"
],
"game_id"
:
"League of Legends"
,
"afk_at"
:
"2016/01/24 06:50:07"
,
"id"
:
"63098846506397696"
,
"aliases"
:
[]},
"azia"
:
{
"status"
:
"online"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 01:01:33"
,
"mention"
:
"<@121404665727418368>"
,
"prev_status"
:
"offline"
,
"games_played"
:
[
"Dragon's Dogma: Dark Arisen"
],
"game_id"
:
"Dragon's Dogma: Dark Arisen"
,
"afk_at"
:
"2016/01/23 06:32:51"
,
"id"
:
"121404665727418368"
,
"aliases"
:
[]},
"scoops"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 01:44:34"
,
"mention"
:
"<@65211875771559936>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
347
,
null
,
0
,
644
,
308
,
15
,
3
,
306
,
351
,
"Counter-Strike: Global Offensive"
,
"Rocket League"
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/23 19:28:16"
,
"id"
:
"65211875771559936"
,
"aliases"
:
[]},
"richter"
:
{
"status"
:
"offline"
,
"is_afk"
:
false
,
"status_change_at"
:
"2016/01/24 06:50:08"
,
"mention"
:
"<@49237234515181568>"
,
"prev_status"
:
"online"
,
"games_played"
:
[
488
,
null
,
183
,
11
],
"game_id"
:
null
,
"afk_at"
:
"2016/01/24 05:30:10"
,
"id"
:
"49237234515181568"
,
"aliases"
:
[]},
"cae"
:
{
"status"
:
"idle"
,
"is_afk"
:
true
,
"status_change_at"
:
"2016/01/24 07:15:06"
,
"mention"
:
"<@65178683714830336>"
,
"prev_status"
:
"online"
,
"game_id"
:
null
,
"games_played"
:
[
335
,
null
,
215
,
112
,
274
,
443
,
"Undertale"
],
"afk_at"
:
"2016/01/24 07:15:06"
,
"id"
:
"65178683714830336"
,
"aliases"
:
[]}}
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment