So im not sure if balance format comes from Economics or if it's infopanel that adds these 00 after balance. I would want to get rid of them.

Chancing balance format?Solved
It comes from Economics; see https://umod.org/community/economics/16135-removing-the-last-digits-from-amount
Wulf
It comes from Economics; see https://umod.org/community/economics/16135-removing-the-last-digits-from-amount
Hmm weird it removed it from /balance command but infopanel is still showing those last digits.
Ah, misunderstood then. I believe in this case it is hard-coded in Info Panel to show that way.
At line 1627 you have this
var balance = $"{GetBalance(panel.Key):N}";Just remove the :N and it will remove those last 2 digits :) Locked automatically