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
Large numbers abbreviation
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.
Flamenser You can try Big class made specifically to handle infinitely large ints: https://github.com/ChronoDK/GodotBigNumberClass