Thread: Saving Data
View Single Post
04/18/14, 09:45 AM   #6
Stormknight
 
Stormknight's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 128
Originally Posted by Lodur View Post
yes it will save complex data.
Including multi-dimensional tables.

Code:
savedvariables.data = {}
For i = 1, 10 do
    Savedvariables.data[i] = {} -- new row
    For j = 1, 10 do
        Savedvariables.data[i][j] = some value
    End
End
Ignore the weird capitalisation, that's my tablet doing that....
  Reply With Quote