Export realtime game statistics to disk in JSON and other formats.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
612 B

-- ___ _ _ _
-- / __| |_ __ _| |_ ___ _ _(_)___
-- \__ \ _/ _` | _/ _ \ '_| / _ \
-- |___/\__\__,_|\__\___/_| |_\___/
--
-- This file declares the available
-- mod settings for players to set.
data:extend({
{
type = "int-setting",
name = "statorio-frequency",
setting_type = "runtime-global",
default_value = 180, -- every 3 seconds
minimum_value = 30, -- half a second
maximum_value = 3600*5, -- every 5 minutes
},
{
type = "string-setting",
name = "statorio-filename",
setting_type = "runtime-global",
default_value = "stats.json"
}
})