1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/config.lua

23 lines
872 B
Lua
Raw Normal View History

2018-09-23 00:25:13 +02:00
_DEBUG = true
2018-08-25 13:55:33 +02:00
MARKET_ITEM = 'coin'
2018-05-22 02:03:04 +02:00
global.scenario = {}
global.scenario.variables = {}
global.scenario.variables.player_positions = {}
global.player_walk_distances = {}
global.scenario.variables.player_deaths = {}
global.scenario.config = {}
2018-09-11 16:00:49 +02:00
global.scenario.config.player_list = {}
global.scenario.config.player_list.enable_coin_col = true
2018-09-12 08:41:56 +02:00
global.scenario.config.paint = {}
2018-09-11 16:13:07 +02:00
global.scenario.config.paint.enable = true
global.scenario.config.fish_market = {}
2018-09-12 08:41:56 +02:00
global.scenario.config.fish_market.enable = true
global.scenario.config.nuke_control = {}
global.scenario.config.nuke_control.enable_autokick = true
global.scenario.config.nuke_control.enable_autoban = true
global.scenario.custom_functions = {}
global.scenario.config.nuke_control.nuke_min_time_hours = 3 --how long a player must be on the server to be allowed to use the nuke
2018-07-28 14:04:14 +02:00
global.newline = '\n'
newline = '\n'