Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleThen we split the contents on the \n with local List = Content:split("\n")

See String:split(). The List contains an a Lua table as list with the messages.

Code Block
local List = Content:split("\n")
trace(#List)   

...