Hello, I want to make an abbreviation of large numbers for my idle game, I want to show amounts up to 1 quindecillion for example, but the balance amount is reset when the amount reaches 10 quintillion

  • xyz replied to this.

    Even a 64-bit integer simply can not store a number that large. You could switch to floats (add a .0 to the literals where it is still missing). But be aware that you will lose precision.