That would do
Words = {Combrad,rules}
so they wouldn't have quotes.
What are you trying to do, basically split up a phrase into a table of the words?
I can do that for ya:
function split(msg)
local i = 0
local t = {}
local s = ""
while i < #msg do
i = i + 1
if msg:sub(i,i) == " " then
if s ~= "" then
t[#t+1] = s
s = ""
end
else
s = s .. msg:sub(i,i)
end
end
if s ~= "" then
t[#t+1] = s
end
return t
end |