ID:1698255
 
(See the best response by DarkCampainger.)
Problem description: Every time my number goes above 1million it turns from 999999 to 1000000+3456 i know there is a lib to fix this, anyone has the link?
There was this one written a long time ago. It will add commas like how you would normally expect to see large numbers. Like 500,600,245.

http://www.byond.com/forum/?post=1245286
Best response
You can use plain-old num2text() to stop it from showing in scientific notation.

If you need more precision (ie you have numbers above 16 million), you can use a BigNum library.
Num2Text did the trick. @Alex it stopped working after 10million.
In response to FallenZtars
Ah interesting. I should make one that works then.