Showing results 1 to 2 of 2
Search took 0.00 seconds.
Search: Posts Made By: Kanegasi
Forum: Lua/XML Help 03-13-21, 08:58 PM
Replies: 5
Views: 4,059
Posted By Kanegasi
It was originally just %f, but I edited my post...

It was originally just %f, but I edited my post after their reply to be %.0f instead.
Forum: Lua/XML Help 03-12-21, 09:33 PM
Replies: 5
Views: 4,059
Posted By Kanegasi
Here you go. I also future-proofed it by...

Here you go. I also future-proofed it by formatting higher numbers, if you ever run into that.

local function FormatValue(val)
if val<1000 then return ("%.0f"):format(val)
elseif val<1000000...
Showing results 1 to 2 of 2