How to get bigger numbers stored? (idle game)

So, i’m making an idle game, and my intention is to store a really large number for my currency, how would i do that? i’m using int64 rn, but the limite is ‘9 Q’ or something, how to pass that? i was thinking in storing it in scientific notation but don’t know to implement.

About my BP, im using players Z location to determinate how much currency he gets per second. its really simple so far.
Every 1 sec - gets player Z value - adds to total coin (int64)

Thanks for the help everyone =)

1 Like

Use a float, it’s floating point, that’s why it’s called a float :slight_smile:

careful with the math though… Floating point precision.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.