-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages.txt
68 lines (59 loc) · 1.01 KB
/
messages.txt
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
JOIN ROOM
{
'username' : 'sahircan',
'languages' : {
'from' : 'en',
'to' : 'tr'
},
'category' : 'fruits',
}
START GAME - Server to user.
{
'users' : [
{
"username" : "kaan",
}
{
"username" : "sahircan"
}
],
'question-number' : 5,
'countdown': 5
}
READY - Users to server. When both users are ready, send the question
{
"roomId" : "",
"username" : "kaan"
}
NEW QUESTION - Starts round. Server to user.
{
'prompt' : 'hello',
'choices' : []
// Question geldiginde countdown baslat
}
ANSWER - User to Server. User 1's answer
{
'user' : 'kaan'
'answer' : 'merhaba'
}
END QUESTION - Server to room.
{
'correct-answer' : 'merhaba',
'timeout' : true
}
NEW QUESTION
END GAME
{
'scoreboard' : [
{
'user' : 'kaan',
'point' : 5
},
{
'user' : 'sahircan',
'point', : 3
}
],
'winner' : 'kaan'
}
LEAVE GAME