Battery capacity still showing incorrect
Hi,

On my server I run the following:
Large battery output @ 300
Medium battery output @ 160
Small battery output @ 80

In your latest update you say the FP defaults are:
  • Large Battery Max Capacity Seconds = 1440000 (4 Hours at 100w)
  • Medium Battery Max Capacity Seconds = 540000 (3 Hours at 50w)
  • Small Battery Max Capacity Seconds = 9000 (15 min at 10w)
So i'm just trying to get my head around how I would configure the time they run for?
To get 8 hours on the large battery do I set 2880000 - is this 8 Hours @300w? or do I set 8640000? 8 hours x 60 x 60 x 300 ?

When I set a value higher than 1440000, then look at a large battery with my wire tool, it says Max Output 100, Active Usage 300, Capacity is still only maximum of 24000rWm, which is 1440000rWseconds? I don't quite understand.

I just want to make large batteries last 8 hours at 300rW, medium batteries 1 hour at 160rW and small batteries 30 minutes at 80rW. What I've set to try and achieve this (but doesn't seem to work, and doesn't show correct information when looking at battery with wire tool) is:

"LargeBatteryConfig": {
"MaxOutput": 300,
"Efficiency": 0.8,
"MaxCapacitySeconds": 8640000
},
"MediumBatteryConfig": {
"MaxOutput": 160,
"Efficiency": 0.8,
"MaxCapacitySeconds": 576000
},
"SmallBatteryConfig": {
"MaxOutput": 80,
"Efficiency": 0.8,
"MaxCapacitySeconds": 144000
},

Is there a way that changes within the configuration are correctly reflected when you look at the battery with the wiretool? 

Thanks in advance..
So I actually cannot change the UI. That is something in Rusts code that is probably hard coded. If the battery goes over a capacity it will show above the default value. Here is an example in this picture of that working. Here is some more info for you as well.

Due to changes in november more information here -> https://rust.facepunch.com/blog/november-update#batteryfixes

The rules were changed without us knowing. Since the introduction of rWm (Rust watt minutes) The capacityInSeconds now reflects a new pattern. 

Default values of batteries (From facepunch).

  • Large Battery Max Capacity Seconds = 1440000 (4 Hours at 100w)
  • Medium Battery Max Capacity Seconds = 540000 (3 Hours at 50w)
  • Small Battery Max Capacity Seconds = 9000 (15 min at 10w)
So if you want to double the life of a small battery take the 9000 and times it by 2. 9000 * 2 = 18000.

These changed were unknown to us and took a while to understand. Im calling these new seconds rWs (Rust watt seconds.) If you want to know how many minutes they will run for take the seconds and divide by 60.

Ex* 18000 / 60 = 300 (rWm)

So take your rWs (rust watt seconds) in this case is 8,640,000 / 60 gives you the minutes then / 60 again to get your hours.

That current configuration should run for 2400 hours. Make sure everytime you change your config you reload either with the in game command /belectric reload or oxide.reload BetterElectricity in the console.