Can't get configuration to workNot An Issue

host doesn't allow me to modify server.cfg
so i been trying to get weather and crate timers to apply on restarts with your plugin

{
  "Run commands on player connect": false,
  "Commands on connect": [
    "examplecmd $player.id",
    "example.cmd"
  ],
  "Run commands on player disconnect": false,
  "Commands on disconnect": [
    "examplecmd",
    "example.cmd \"text example\""
  ],
  "Run commands on server startup": true,
  "Commands on server startup": [
    "weather.clear_chance 1; weather.dust_chance 0; weather.fog_chance 0; weather.overcast_chance 0; weather.rain_chance 0; weather.storm_chance 0",
    "hackablelockedcrate.requiredhackseconds 600"
  ],
  "Run commands on server wipe": false,
  "Commands on server wipe": [
    "examplecmd arg",
    "example.cmd \"text example\""
  ]
}

Am I doing something wrong here? I can't seem to get it working. Thanks.

You need quotations around each command followed by a comma after each except for the last, not semi-colons.

That is able to run all weather commands as one in the console and the hackablelockedcrate.requiredhackseconds seems to not be workin either

Merged post

{
"Run commands on player connect": false,
"Commands on connect": [
"examplecmd $player.id",
"example.cmd"
],
"Run commands on player disconnect": false,
"Commands on disconnect": [
"examplecmd",
"example.cmd \"text example\""
],
"Run commands on server startup": true,
"Commands on server startup": [
"weather.clear_chance 1",
"weather.dust_chance 0",
"weather.fog_chance 0",
"weather.overcast_chance 0",
"weather.rain_chance 0",
"weather.storm_chance 0",
"hackablelockedcrate.requiredhackseconds 600",
"decay.upkeep_period_minutes 2880",
"server.monthly",
"server.pve"
],
"Run commands on server wipe": false,
"Commands on server wipe": [
"examplecmd arg",
"example.cmd \"text example\""
]
}

 

This correct?

Looks okay, but hard to tell on mobile. Does it not work?

Locked automatically