-
Notifications
You must be signed in to change notification settings - Fork 0
/
playersData.js
80 lines (80 loc) · 1.91 KB
/
playersData.js
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
74
75
76
77
78
79
80
// NOTE: Please only modify player attributes below such as name, color, and visible
// To hide a player's marker, change their 'visible' variable from 'true' to 'false'
// This file is automatically updated, and if other parts are changed, it will fail to update
// Changes will only be read from the /map/playersData.js file - /update/playersData.js will be overwritten, so don't make changes there
var playersData = {
"players": [
{
"uuid": "12f7b0c1-b82b-4dcf-97af-373c4ec4f751",
"name": "Player 12f7b",
"dimensionId": 0,
"position": [
5.5,
77.62001,
27.5
],
"color": "DarkBlue",
"visible": true
},
{
"uuid": "1337dbd7-7ed0-4898-b5c0-b910c5baedc6",
"name": "Player 1337d",
"dimensionId": 0,
"position": [
2701.9177,
74.62001,
478.35568
],
"color": "DarkRed",
"visible": true
},
{
"uuid": "5bcbb8ed-d53f-4bf6-8348-7062e112c3cf",
"name": "Player 5bcbb",
"dimensionId": 0,
"position": [
-665.8947,
67.62001,
1383.6442
],
"color": "DarkBlue",
"visible": true
},
{
"uuid": "8e48f1af-2ea6-4de4-a0a4-3b16cc33d32a",
"name": "Player 8e48f",
"dimensionId": 0,
"position": [
-1.0340719,
97.62001,
65.2956
],
"color": "DarkBlue",
"visible": true
},
{
"uuid": "b61f3fd2-26f2-4335-b1ec-05fd75d5b992",
"name": "Player b61f3",
"dimensionId": 0,
"position": [
-661.3883,
12.62001,
1379.656
],
"color": "SaddleBrown",
"visible": true
},
{
"uuid": "eb64ebf2-0df8-4dc9-b7b0-38ed550f3bf9",
"name": "Player eb64e",
"dimensionId": 0,
"position": [
5.6971045,
71.62001,
24.77556
],
"color": "SaddleBrown",
"visible": true
}
]
};