Posts by Lua Team 91 • 75 points
2 posts
-
2
votes1
answer166
viewsQ: Convert String to Tables
local items = {} local t = "7 2182, 4 2554, 5 9908" I wanted to convert using this string and let the table come out like this: local items = {{7,2182},{4,2554},{5,9908}} is there any way? using…
-
5
votes1
answer525
viewsQ: LUA, Separate string with numbers in a table!
I have a code rescue system, in case I would put something like this in a text file: HFGD65,{2454,2454},1,1 would be: CODE to redeem -- string {items} -- items within the table in numbers points --…