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
|
|
|
|
2017-09-09 22:56:28 +02:00
|
|
|
global.scenario = {}
|
|
|
|
global.scenario.variables = {}
|
|
|
|
global.scenario.variables.player_positions = {}
|
2018-04-05 15:39:35 +02:00
|
|
|
global.player_walk_distances = {}
|
2017-10-15 12:58:24 +02:00
|
|
|
global.scenario.variables.player_deaths = {}
|
2017-09-09 22:56:28 +02:00
|
|
|
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
|
2018-09-11 16:21:35 +02:00
|
|
|
global.scenario.config.nuke_control = {}
|
|
|
|
global.scenario.config.nuke_control.enable_autokick = true
|
|
|
|
global.scenario.config.nuke_control.enable_autoban = true
|
2017-09-09 22:56:28 +02:00
|
|
|
global.scenario.custom_functions = {}
|
2018-09-11 16:21:35 +02:00
|
|
|
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'
|