Showing results 1 to 3 of 3
Search took 0.00 seconds.
Search: Posts Made By: Sharlikran
Forum: Lua/XML Help 05/29/23, 09:55 PM
Replies: 17
Views: 3,598
Posted By Sharlikran
My second post shows how to go back and forth...

My second post shows how to go back and forth though, did you get a chance to try that?
Forum: Lua/XML Help 05/29/23, 07:10 PM
Replies: 17
Views: 3,598
Posted By Sharlikran
Also go to an online Lua compiler local value =...

Also go to an online Lua compiler

local value = "10,000"
print(tonumber(value))

That will return nil

local value = "10,000"
value = string.gsub(value, ",", "")
print(tonumber(value))
Forum: Lua/XML Help 05/29/23, 06:00 PM
Replies: 17
Views: 3,598
Posted By Sharlikran
I really recommend against mixing formats like...

I really recommend against mixing formats like that. Anything can be stored at a number like 10000 or 1000 anywhere you want. For a table for LibAddonMenu, in the saved variables, anything. When...
Showing results 1 to 3 of 3