var/num=1000000
mob/Stat()
statpanel("Stats")
stat("test", abs(num))
Problem description: Is it possible I can somehow have to look like 1000000 instead of 1e+006?
Code:
var/num=1000000 Problem description: Is it possible I can somehow have to look like 1000000 instead of 1e+006? |
![]() Jun 13 2014, 10:42 pm
|
|
You'll have to use a library (such as BigNum) in order to get more accurate numbers.
|
buddy just use this
proc/MaxNum(var/eNum,var/ShowCommas=1) and there you go it will work |