Divergent/mods/Anomaly Barter/gamedata/scripts/barter_mcm.script

23 lines
746 B
Plaintext
Raw Normal View History

2024-03-17 20:18:03 -04:00
-- If you don't use MCM, change your defaults from here.
local defaults = {
["cond"] = 90,
["cond_part"] = 60,
["debug"] = false,
}
function get_config(key)
if ui_mcm then return ui_mcm.get("barter/"..key) else return defaults[key] end
end
function on_mcm_load()
op = { id= "barter",sh=true ,gr={
{ id= "title",type= "slide",link= "ui_options_slider_player",text="ui_mcm_barter_title",size= {512,50},spacing= 20 },
{id = "cond", type = "track", val = 2, min=10,max=100,step=10, def = 90},
{id = "cond_part", type = "track", val = 2, min=0,max=100,step=10, def = 60},
{id = "debug", type = "check", val = 1, def = false},
}
}
return op
end