Json error but it is validSolved
Moderator edit: Please use code blocks when posting large portions of text such as logs or config files.
Hey!
Please, think about the thing below:
oh that why thanks 

Merged post

you did a great work btw
quicksmelt was so bad but you did a good refresh
I am having the same issue. I'm looking at those red arrows and I am thinking about what they are pointing to.  The thing is, that is already what my cfg looks like.  I validated the json and I still get an error and it reverts back to the default cfg.

What am I missing?

Moderator edit: Please use code blocks when posting large portions of text such as logs or config files.
still curious how this is solved ?  what was the error ? 

Check your JSON very well ;-).

This is my working config:

{
  "Permission": "quicksmelt.use",
  "Use Permission": true,
  "Speed Multipliers": {
    "furnace": 2.0,
    "furnace.large": 2.0,
    "small.oil.refinery": 2.0
  },
  "Fuel Usage Speed Multipliers": {
    "furnace": 2.0,
    "furnace.large": 2.0,
    "small.oil.refinery": 2.0
  },
  "Fuel Usage Multipliers": {
    "furnace": 2,
    "furnace.large": 2
  },
  "Output Multipliers": {
    "furnace": {
      "charcoal": 2.0
    },
    "furnace.large": {
      "charcoal": 2.0
    }
  },
  "Whitelist": {
    "furnace.shortname": [
      "item.shortname"
    ]
  },
  "Blacklist": {
    "furnace.shortname": [
      "item.shortname"
    ]
  },
  "Smelting Frequency (Smelt items every N smelting ticks)": 2,
  "Debug": false
}
Hey, @Tater
Fuel Usage Multipliers​

It must be in format NOT x.x, it must be like just x. Check out default configuration in plugin description
In response to misticos ():
Hey, @Tater
Fuel Usage Multipliers​
It must be in format NOT x.x, it must be like just x...
Thank you!

Merged post

Okay I FINALLY got it to work! Here's my cfg. Thanks misticos and everyone else.  I have never had so much trouble with a cfg before. Ever.

{
  "Permission": "quicksmelt.use",
  "Use Permission": true,
  "Speed Multipliers": {
    "furnace": 1.0,
    "furnace.large": 1.0,
    "small.oil.refinery": 1.0,
    "campfire": 1.0,
    "BBQ": 1.0,
    "water.purifier": 1.0
  },
  "Fuel Usage Speed Multipliers": {
    "furnace": 1.0,
    "furnace.large": 1.0,
    "small.oil.refinery": 1.0,
    "campfire": 1.0,
    "BBQ": 1.0,
    "water.purifier": 1.0
  },
  "Fuel Usage Multipliers": {
    "furnace": 1,
    "furnace.large": 1,
    "small.oil.refinery": 1,
    "campfire": 1,
    "BBQ": 1,
    "water.purifier": 1
  },
  "Output Multipliers": {
    "furnace": {
      "metal.ore": 1.0,
      "sulfur.ore": 1.0,
      "hq.metal.ore": 1.0
    },
    "small.oil.refinery": {
      "crude.oil": 1.0
    },
    "campfire": {
      "chicken.raw": 1.0,
      "meat.boar": 1.0,
      "deermeat.raw": 1.0,
      "wolfmeat.raw": 1.0,
      "bearmeat": 1.0
    },
    "BBQ": {
      "chicken.raw": 1.0,
      "meat.boar": 1.0,
      "deermeat.raw": 1.0,
      "wolfmeat.raw": 1.0,
      "bearmeat": 1.0
    }
  },
  "Whitelist": {
    "furnace.shortname": [
      "item.shortname"
    ]
  },
  "Blacklist": {
    "furnace.shortname": [
      "item.shortname"
    ]
  },
  "Smelting Frequency (Smelt items every N smelting ticks)": 2,
  "Debug": false
}
Locked automatically