I guess it will loop into itself, just like int.
var nt:int = int.MAX_VALUE + 10;
As you can see, MAX + 10 same as MIN + 9 (you need to consider at least the min value). Therefore, when you click on this 24-day mark, it will look like -24 days and begin to return.
There is also the possibility that the function itself will not return the actual time, but something like this:
return timer % int.MAX_VALUE;
This will reset the time every time it presses MAX_VALUE to 0 using a simple module. I honestly wonโt be surprised if this is what they do (since you donโt want a negative runtime, obviously)
source share