-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathut-serv.conf
More file actions
121 lines (86 loc) · 2.19 KB
/
ut-serv.conf
File metadata and controls
121 lines (86 loc) · 2.19 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
-- < Settings related to network >----------------------------------------------
network = {
modem = {}
}
-- Modem strength
network.modem.strength = 400
-- Port to listen on and send to.
network.modem.port = 12345
-- < Settings related to teleportation >----------------------------------------
teleport = {}
-- North point
teleport.n = {-957, 12, 600}
-- North-East point
teleport.ne = {-941, 12, 614}
-- East point
teleport.e = {-927, 12, 630}
-- South-East point
teleport.se = {-941, 12, 646}
-- South point
teleport.s = {-957, 12, 660}
-- South-West point
teleport.sw = {-973, 12, 646}
-- West point
teleport.w = {-987, 12, 630}
-- North-West point
teleport.nw = {-973, 12, 614}
-- Top point
teleport.top = {-957, 24, 630}
-- < World interaction settings > ----------------------------------------------
world = {
chest = {},
item = {},
}
-- Chest block id
world.chest.id = "minecraft:chest"
-- Chest block metadata
world.chest.meta = 0
-- Chest NBT
world.chest.nbt = {}
-- Side to use when inserting a coin
world.chest.side = 0
-- Coin id
world.item.id = "minecraft:stone"
-- Coin number id
world.item.id2 = 1
-- Coin meta
world.item.meta = 0
-- Coin count (chosen randomly of values of the interval)
world.item.count = {1, 1}
-- Coin NBT
world.item.nbt = ""
world.field = {}
-- The chest spawn area
world.field.x = -965
world.field.y = 11
world.field.z = 622
world.field.w = 17
world.field.h = 1
world.field.l = 17
-- < Game settings > -----------------------------------------------------------
game = {
chests = {}
}
-- Chest lifetime
game.chestLifeTime = 7.5
-- Chest spawn interval
game.chestSpawnInterval = 5
-- Score update interval
game.scoreUpdateInterval = 3
-- Sync message interval
game.syncMsgInterval = 3
-- Coordinates of team chests
game.chests.blue = {-975, 7, 630}
game.chests.green = {-958, 7, 613}
game.chests.red = {-941, 7, 630}
game.chests.yellow = {-958, 7, 647}
-- The numeric ID of chest
game.chestID = 54
-- The default game time
game.totalGameTime = 300
-- People who can control the server
game.admins = {"Fingercomp", "Totoro"}
-- < Glasses related settings > ------------------------------------------------
glasses = {}
-- Sync interval
glasses.syncInterval = 0.5