QuickSMelt not working. Could be becuase of the new update ?Solved

Hi, We are tryng to get our furnaces to smelt quicker, but the plugin after setup and reload dosen´t work. It could be becuase of new update ?

Make sure you are on the latest and send the config

private const string PermissionUse = "quicksmelt.use";

#endregion

#region Configuration

private static Configuration _config;

private class Configuration
{
[JsonProperty(PropertyName = "Use Permission")]
public bool UsePermission = false;

[JsonProperty(PropertyName = "Speed Multipliers", ObjectCreationHandling = ObjectCreationHandling.Replace)]
public Dictionary<string, float> SpeedMultipliers = new Dictionary<string, float>
{
{ "global", 1.0f },
{ "furnace", 5.0f }

Merged post

if I reload plugin its okej, but when we try furnace in the game it dosent work

Merged post

[DEBUG] Reload requested for plugin which is already loading: QuickSmelt
[DEBUG] Reload requested for plugin which is already loading: QuickSmelt
QuickSmelt was compiled successfully in 3105ms
Calling 'Unload' on 'QuickSmelt v5.1.4' took 234ms
Unloaded plugin Quick Smelt v5.1.4 by misticos
Calling 'OnServerInitialized' on 'QuickSmelt v5.1.4' took 218ms
Loaded plugin Quick Smelt v5.1.4 by misticos

Configuration should be changed in the .json, you should never ever change .cs

okey but where I can find json files ?

jYWe9o0wVexkJIK.jpg ChickenDevil

okey but where I can find json files ?

instead of the plugin folder, take a look at the config folder :)

thank you i just found that :D 

Merged post

sorry for all that questions im just new in this things

Merged post

last thing I have to add "furnace.large": and number right ?
But when I add it gives me error 

Merged post

{
"Use Permission": false,
"Speed Multipliers": {
"global": 1.0,
"furnace": 5.0
"furnace.large": 5.0

 

 

and this is error

o.reload QuickSmelt
Calling 'Unload' on 'QuickSmelt v5.1.5' took 202ms
Unloaded plugin Quick Smelt v5.1.5 by misticos
QuickSmelt v5.1.5: Failed to load config file (is the config file corrupt?) (After parsing a value an unexpected character was encountered: ". Path '['Speed Multipliers'].furnace', line 6, position 6.)
[Quick Smelt] Your configuration file contains an error. Using default configuration values.
Calling 'OnServerInitialized' on 'QuickSmelt v5.1.5' took 206ms
Loaded plugin Quick Smelt v5.1.5 by misticos
jYWe9o0wVexkJIK.jpg ChickenDevil

thank you i just found that :D 

Merged post

sorry for all that questions im just new in this things

Merged post

last thing I have to add "furnace.large": and number right ?
But when I add it gives me error 

Merged post

{
"Use Permission": false,
"Speed Multipliers": {
"global": 1.0,
"furnace": 5.0
"furnace.large": 5.0

 

 

and this is error

o.reload QuickSmelt
Calling 'Unload' on 'QuickSmelt v5.1.5' took 202ms
Unloaded plugin Quick Smelt v5.1.5 by misticos
QuickSmelt v5.1.5: Failed to load config file (is the config file corrupt?) (After parsing a value an unexpected character was encountered: ". Path '['Speed Multipliers'].furnace', line 6, position 6.)
[Quick Smelt] Your configuration file contains an error. Using default configuration values.
Calling 'OnServerInitialized' on 'QuickSmelt v5.1.5' took 206ms
Loaded plugin Quick Smelt v5.1.5 by misticos

post your whole config (select all,copy,paste) it helps when looking for errors

"Use Permission": false,
"Speed Multipliers": {
"global": 1.0,
"furnace": 2.5
"furnace.large": 2.0,
"refinery_small_deployed": 2.0,
"campfire": 2.0,
"skull_fire_pit": 2.0,
"fireplace.deployed": 2.0,
"bbq.deployed": 2.0
},
"Fuel Usage Speed Multipliers": {
"global": 1.0,
"furnace.shortname": 1.0
},
"Fuel Usage Multipliers": {
"global": 1,
"furnace.shortname": 1
},
"Output Multipliers": {
"global": {
"global": 1.0
},
"furnace.shortname": {
"item.shortname": 1.0
}
},
"Whitelist": {
"global": [
"item.shortname"
],
"furnace.shortname": [
"item.shortname"
]
},
"Blacklist": {
"global": [
"item.shortname"
],
"furnace.shortname": [
"item.shortname"
]
},
"Smelting Frequencies (Smelt items every N smelting ticks)": {
"global": 1,
"furnace.shortname": 1
},
"Debug": false
}

Merged post

i found it I forgot to put "," behind 2.0 on furnace

jYWe9o0wVexkJIK.jpg ChickenDevil

"Use Permission": false,
"Speed Multipliers": {
"global": 1.0,
"furnace": 2.5
"furnace.large": 2.0,
"refinery_small_deployed": 2.0,
"campfire": 2.0,
"skull_fire_pit": 2.0,
"fireplace.deployed": 2.0,
"bbq.deployed": 2.0
},
"Fuel Usage Speed Multipliers": {
"global": 1.0,
"furnace.shortname": 1.0
},
"Fuel Usage Multipliers": {
"global": 1,
"furnace.shortname": 1
},
"Output Multipliers": {
"global": {
"global": 1.0
},
"furnace.shortname": {
"item.shortname": 1.0
}
},
"Whitelist": {
"global": [
"item.shortname"
],
"furnace.shortname": [
"item.shortname"
]
},
"Blacklist": {
"global": [
"item.shortname"
],
"furnace.shortname": [
"item.shortname"
]
},
"Smelting Frequencies (Smelt items every N smelting ticks)": {
"global": 1,
"furnace.shortname": 1
},
"Debug": false
}

Merged post

i found it I forgot to put "," behind 2.0 on furnace

Great to hear, can you change the status to solved  :)

Locked automatically