Because it’s reading a table like this:
{info, info,**thing**}
It wants to read **thing**
which is the 3rd entry in the table, so you use data (the variable for the table)
and [3]
so lua knows you want the 3rd entry in the table.
Because it’s reading a table like this:
{info, info,**thing**}
It wants to read **thing**
which is the 3rd entry in the table, so you use data (the variable for the table)
and [3]
so lua knows you want the 3rd entry in the table.
Testing it later if its working