mob/var/hp = 0 as num
mob/Stat()
..()
statpanel("sdafd")
stat("HP:","[num2text(src.hp,99999999)]")
mob/verb/AddHP(N as num)
hp += N
mob/verb/Thingy()
src << src.hp
But the thing is I add this to the hp(99999999), and this is what I see in the statpanel.. 100000000
Why when I add 0 to 99999999 I get 100000000. Would that make the BYOND system inaccurate with adding? Please give me the 411
|
||||||||||||||||||||||
Change
to
> stat("HP:",src.hp)