My current sayfunction is like;
!func {value} {value} {value} {value} {value}
or
!func atme
Scripts
Next number in string
Next number in string
1

Re: Next number in stringlocal string = "Hello my name is David" local t = totable(string)
Infinite Rain:
VADemon has written
Infinite Rain:
Re: Next number in stringfunction totable(t,match)
local cmd = {}
if not match then match = "[^%s]+" end
for word in string.gmatch(t, match) do
table.insert(cmd, word)
end
return cmd
end
1
