Skip to content

Commit 2e1aa73

Browse files
author
Xikaro
committed
приват + права
1 parent 7d422e7 commit 2e1aa73

16 files changed

+2618
-55
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
["Version Configuration"]
3+
# Define a version here. On world load the mod will look up the serverconfig version and reset all files that specified up to the newest version.
4+
# Example: ["1=minecraft","2=forge"] will reset minecraft and forge config on first load, but will only reset forge if the world has been loaded before with only version 1 defined
5+
versions = [""]
6+
7+
["File Deleter"]
8+
# This is intended for deleting files for pack updates. This is a last resort! Replace with empty files instead when possible. The file will be deleted every launch if it exists! Specify the path to the file. Comma Separated List. Example: scripts/badscript.zs
9+
files = [""]
10+
# By default Folders are only deleted if they are empty. Set to true to change that.
11+
deleteFoldersWithContent = false
12+

config/sidebar_buttons.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@
1010
"toggle.rain": true,
1111
"toggle.day": true,
1212
"toggle.night": true
13+
},
14+
"ftbessentials": {
15+
"trash_can": true
1316
}
1417
}
Lines changed: 241 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
1+
# Default config file that will be copied to world's serverconfig/ftbessentials.snbt location
2+
# Copy values you wish to override in here
3+
# Example:
4+
#
5+
# {
6+
# misc: {
7+
# enderchest: {
8+
# enabled: false
9+
# }
10+
# }
11+
# }
12+
13+
{
14+
# Admin commands for cheating and moderation
15+
admin: {
16+
# Allows admins to toggle flying status using a command, without having to use Creative Mode
17+
fly: {
18+
# Default: true
19+
enabled: true
20+
}
21+
22+
# Allows admins to toggle invincibility using a command, without having to use Creative Mode
23+
god: {
24+
# Default: true
25+
enabled: true
26+
}
27+
28+
# Allows admins to heal themselves using a command
29+
heal: {
30+
# Default: true
31+
enabled: true
32+
}
33+
34+
# Allows admins to view other users' inventories using a command
35+
invsee: {
36+
# Default: true
37+
enabled: true
38+
}
39+
40+
# Allows admins to restrict players from chatting by using a command to mute (or unmute) them
41+
mute: {
42+
# Default: true
43+
enabled: true
44+
}
45+
}
46+
47+
# Miscellaneous features and utilities
48+
misc: {
49+
# Allows users to access their ender chest, as well as admins to manage other players' ender chests.
50+
enderchest: {
51+
# Default: true
52+
enabled: true
53+
}
54+
55+
# Allows users to set a custom hat as their head item by using a command
56+
hat: {
57+
# Default: true
58+
enabled: true
59+
}
60+
61+
# Allows users to kick themselves from the server, for example if they are stuck or desynced
62+
kickme: {
63+
# Default: true
64+
enabled: true
65+
}
66+
67+
# Allows users to view player leaderboard stats.
68+
leaderboard: {
69+
# Default: true
70+
enabled: true
71+
}
72+
73+
# Allows users to change their display name, as well as admins to change nicknames for other users
74+
nick: {
75+
# Default: true
76+
enabled: true
77+
}
78+
79+
# Allows users to announce their recording or streaming status to the server by using commands
80+
rec: {
81+
# Default: true
82+
enabled: true
83+
}
84+
85+
# Enables usage of a trash can inventory, which can be used to void unneeded items
86+
trashcan: {
87+
# Default: true
88+
enabled: true
89+
}
90+
}
91+
92+
# Teleportation-related settings
93+
teleportation: {
94+
# Allows users to return to their previous location after teleporting (or dying)
95+
back: {
96+
# Cooldown between /back commands (in seconds)
97+
# You can override this with FTB Ranks using ftbessentials.back.cooldown
98+
# Default: 30
99+
# Range: 0 ~ 604800
100+
cooldown: 30
101+
102+
# Default: true
103+
enabled: false
104+
105+
# Max size of the teleport history. This limits how many times you can use /back
106+
# You can override this with FTB Ranks using ftbessentials.back.max
107+
# Default: 10
108+
# Range: 0 ~ 2147483647
109+
max: 10
110+
111+
# Warm-up time before /back command executes (in seconds)
112+
# You can override this with FTB Ranks using ftbessentials.back.warmup
113+
# Default: 0
114+
# Range: 0 ~ 604800
115+
warmup: 0
116+
}
117+
118+
# Allows users to set 'homes', which they can then freely teleport to by using /home afterwards
119+
home: {
120+
# Cooldown between /home commands (in seconds)
121+
# You can override this with FTB Ranks using ftbessentials.home.cooldown
122+
# Default: 10
123+
# Range: 0 ~ 604800
124+
cooldown: 10
125+
126+
# Default: true
127+
enabled: false
128+
129+
# Max amount of homes a user can have.
130+
# You can override this with FTB Ranks using ftbessentials.home.max
131+
# Default: 1
132+
# Range: 0 ~ 2147483647
133+
max: 1
134+
135+
# Warm-up time before /home command executes (in seconds)
136+
# You can override this with FTB Ranks using ftbessentials.home.warmup
137+
# Default: 0
138+
# Range: 0 ~ 604800
139+
warmup: 0
140+
}
141+
142+
# Allows players to teleport to a random point in the Wilderness
143+
# Note: This currently does not respect Claimed Chunks yet!
144+
rtp: {
145+
# Cooldown between /rtp commands (in seconds)
146+
# You can override this with FTB Ranks using ftbessentials.rtp.cooldown
147+
# Default: 600
148+
# Range: 0 ~ 604800
149+
cooldown: 600
150+
151+
# Default: true
152+
enabled: false
153+
154+
# /rtp max distance from spawn point
155+
# Default: 100000
156+
# Range: 0 ~ 30000000
157+
max_distance: 100000
158+
159+
# Number of tries before /rtp gives up
160+
# Default: 100
161+
# Range: 1 ~ 1000
162+
max_tries: 100
163+
164+
# /rtp min distance from spawn point
165+
# Default: 1000
166+
# Range: 0 ~ 30000000
167+
min_distance: 1000
168+
169+
# Warm-up time before /rtp command executes (in seconds)
170+
# You can override this with FTB Ranks using ftbessentials.rtp.warmup
171+
# Default: 0
172+
# Range: 0 ~ 604800
173+
warmup: 0
174+
}
175+
spawn: {
176+
# Cooldown between /spawn commands (in seconds)
177+
# You can override this with FTB Ranks using ftbessentials.spawn.cooldown
178+
# Default: 10
179+
# Range: 0 ~ 604800
180+
cooldown: 10
181+
182+
# Default: true
183+
enabled: false
184+
185+
# Warm-up time before /spawn command executes (in seconds)
186+
# You can override this with FTB Ranks using ftbessentials.spawn.warmup
187+
# Default: 0
188+
# Range: 0 ~ 604800
189+
warmup: 0
190+
}
191+
192+
# Allows players to create requests to teleport to other users on the server,
193+
# as well as requesting other players to teleport to them
194+
tpa: {
195+
# Cooldown between /tpa commands (in seconds)
196+
# You can override this with FTB Ranks using ftbessentials.tpa.cooldown
197+
# Default: 10
198+
# Range: 0 ~ 604800
199+
cooldown: 10
200+
201+
# Default: true
202+
enabled: false
203+
204+
# Warm-up time before /tpa command executes (in seconds)
205+
# You can override this with FTB Ranks using ftbessentials.tpa.warmup
206+
# Default: 0
207+
# Range: 0 ~ 604800
208+
warmup: 0
209+
}
210+
211+
# Allows admins to teleport to the location a user was last seen at
212+
tpl: {
213+
# Default: true
214+
enabled: false
215+
}
216+
217+
# Allows admins to teleport to dimension
218+
tpx: {
219+
# Default: true
220+
enabled: true
221+
}
222+
223+
# Allows admins to create 'warps', which are fixed points in the world that users may teleport to using /warp
224+
warp: {
225+
# Cooldown between /warp commands (in seconds)
226+
# You can override this with FTB Ranks using ftbessentials.warp.cooldown
227+
# Default: 10
228+
# Range: 0 ~ 604800
229+
cooldown: 10
230+
231+
# Default: true
232+
enabled: false
233+
234+
# Warm-up time before /warp command executes (in seconds)
235+
# You can override this with FTB Ranks using ftbessentials.warp.warmup
236+
# Default: 0
237+
# Range: 0 ~ 604800
238+
warmup: 0
239+
}
240+
}
241+
}

0 commit comments

Comments
 (0)