Are we able to add time variables between the defaults?Solved

I want to be able to change the protection between 24 and 48 hours, I added 24 in the config (see below) 

Will this work?

{
"absoluteTimeScale": {},
"activity": [
"input",
"loot",
"respawn",
"chat",
"wakeup"
],
"afkMinutes": 10,
"clanFirstOffline": false,
"clanShare": false,
"cooldownMinutes": 15,
"damageScale": {
"1": 0.0,
"12": 0.0,
"24": 0.0,
"3": 0.0,
"48": 0.100,
"6": 0.0
},
"interimDamage": 0.0,
"minMembers": 1,
"playSound": true,
"prefabs": [
"door.hinged",
"door.double.hinged",
"window.bars",
"floor.ladder.hatch",
"floor.frame",
"wall.frame",
"shutter",
"wall.external",
"gates.external",
"box",
"locker"
],
"serverTimeOffset": 0,
"showMessage": true,
"sound": "assets/prefabs/weapon mods/silencers/effects/silencer_attach.fx.prefab",
"VERSION": "0.4.2"
}

they need to be in order from low to high.. Id recommend the following, this setting waits until after 48 hours then sets damage to 10% 

if you want the 3, 6 and 12 they need to go in the right order between 1 and 24. Other then the "1", you only need entries when you want to change the values. the 24 option below is optional

"damageScale": {
"1": 0.0,
"24": 0.0,
"48": 0.100
},

U9CBPMxGn1sdSHK.png shady14u

they need to be in order from low to high.. Id recommend the following, this setting waits until after 48 hours then sets damage to 10% 

if you want the 3, 6 and 12 they need to go in the right order between 1 and 24. Other then the "1", you only need entries when you want to change the values. the 24 option below is optional

"damageScale": {
"1": 0.0,
"24": 0.0,
"48": 0.100
},

Understood thank you!

Locked automatically