Toribash
Original Post
why is the max input for auto betting 2147483647?
why is it the 8th mersenne prime

is like a java thing
The number 2,147,483,647 (or hexadecimal 7FFF,FFFF16) is the maximum positive value for a 32-bit signed binary integer in computing. It is therefore the maximum value for variables declared as integers (e.g., as int) in many programming languages, and the maximum possible score, money, etc. for many video games.
Maximum integer in java for 32 bit, which I can only presume toribash works off of

-sniped-

64 bit would take much more, but as no one is theoretically getting to 2,147,483,647, it is not an issue
[21:55] Icky: How the fuck can i make witty lines about blossoms without going full weeb
Note: it's not because of Java. It just happens to be the maximum value of a signed 32-bit integer, which is a very widely used data type implemented at hardware level on virtually every personal computer system these days.

It also just coincidentally happens to be prime -- 32 bit integers were designed with little to no consideration of the primality of 2147483647.