2018-09-23 13:22:14 +02:00
_DEBUG = false
2018-11-24 18:40:55 +02:00
_CHEATS = false
2018-05-22 02:03:04 +02:00
2018-12-01 23:06:24 +02:00
global.config = {
-- The title of the map
map_name_key = ' This Map has no name ' ,
2018-11-13 01:30:30 +02:00
2018-12-01 23:06:24 +02:00
-- The long description of the map, typically 1 paragraph
map_description_key = " By default this section is blank as it's supposed to be filled out on a per map basis. (If you're seeing this message, ping the admin team to get a description added for this map) " ,
-- The feature list of the map
map_extra_info_key = ' This map has no extra information ' ,
-- New Scenario Features, appears in the "What's new" tab
new_info_key = ' Nothing is new. The world is at peace ' ,
2018-12-06 13:27:08 +02:00
performance = {
enabled = true ,
} ,
2018-12-06 13:18:52 +02:00
-- adds a player list icon and keeps track of data.
2018-12-01 23:06:24 +02:00
player_list = {
2018-12-06 13:18:52 +02:00
enabled = true ,
show_coin_column = true ,
2018-12-01 23:06:24 +02:00
} ,
2018-12-06 13:18:52 +02:00
-- enables the poll system
poll = {
enabled = true ,
} ,
-- enables players to create and join tags
tag_group = {
enabled = true ,
} ,
-- enables players to create and prioritize tasks
tasklist = {
enabled = true ,
} ,
-- enables the blueprint helper
blueprint_helper = {
enabled = true ,
} ,
-- enables score and tracking thereof
score = {
enabled = true ,
} ,
-- adds a paint brush
2018-12-01 23:06:24 +02:00
paint = {
2018-12-06 13:18:52 +02:00
enabled = true ,
2018-12-01 23:06:24 +02:00
} ,
2018-12-06 13:18:52 +02:00
-- adds a fish market
2018-12-01 23:06:24 +02:00
fish_market = {
2018-12-06 13:18:52 +02:00
enabled = true ,
market_item = ' coin ' ,
2018-12-01 23:06:24 +02:00
} ,
2018-12-06 13:18:52 +02:00
-- automatically marks mines for deconstruction when they are depleted
-- currently not working with mods
auto_deconstruct = {
enabled = true ,
} ,
-- adds anti-nuke griefing
2018-12-01 23:06:24 +02:00
nuke_control = {
2018-12-06 13:18:52 +02:00
enabled = true ,
2018-12-01 23:06:24 +02:00
enable_autokick = true ,
enable_autoban = true ,
-- how long a player must be on the server to be allowed to use the nuke
nuke_min_time_hours = 3 ,
} ,
2018-12-06 13:18:52 +02:00
-- adds a meltdown feature, requiring precise management
reactor_meltdown = {
enabled = true ,
-- when enabled, controls whether it's on by default. State can be controlled with the /meltdown command.
on_by_default = false ,
} ,
-- adds hodor responses to messages
hodor = {
enabled = true ,
} ,
-- enable RedMew auto respond messages
auto_respond = {
enabled = true ,
} ,
-- enable the mentioning system, which notifies a player when their name is mentioned
mentions = {
enabled = true ,
} ,
2018-12-01 23:06:24 +02:00
}
2018-12-06 13:18:52 +02:00
return global.config