-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
28 lines (24 loc) · 703 Bytes
/
Copy pathdata.js
File metadata and controls
28 lines (24 loc) · 703 Bytes
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
var npcs = {
npc1 : [49.862155, 23.916207],
npc2 : [49.864416, 23.921962],
npc3 : [49.860313, 23.925817]
};
var targets = {
'2b2' : [49.864980, 23.916439],
'6i4' : [49.863714, 23.919054],
'8f9' : [49.863142, 23.918019],
'13b9' : [49.861783, 23.916379],
'16d9' : [49.860947, 23.917136],
'18a5' : [49.860401, 23.916113],
'16f9' : [49.860974, 23.917971],
'2k1' : [49.864875, 23.920000],
'5n7' : [49.863911, 23.921213],
'14k3' : [49.861599, 23.920163],
'17m4' : [49.860762, 23.921164],
'18o9' : [49.860472, 23.921783],
'11v4' : [49.862068, 23.924883],
'20t7' : [49.859834, 23.923664],
'18u8' : [49.860437, 23.924135]
};
exports.npcs = npcs;
exports.targets = targets;