ID:166659
 
I was just wondering if there was a way that you could change byond's #INF term to something else of your choosing, say for example 'Unlimited'? Is it possible to do this?
if number equals #INF
then output Unlimited
else
output the number


?? :/
Pseudocode.
In response to Koil
But isn't it true that the number isn't really equal to INF, byond just gives it that term after the number gets so high?
In response to Jester619
proc
getNum(num)
if("[num]"=="1.#INF") return "Unlimited."
else return num

I'd probably do something like that :/

edit
checked it, and it does work.