View Single Post
09-24-18, 03:10 PM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,935
Maybe a better example of what you are trying to achieve would help.

If it is tables within tables then you simply repeat the process you did to create the first table.


For Example:
Lua Code:
  1. Table1 = {}
  2. Table1.Table1a = {}
  3. Table1.Table1a.Table1b = {}
Is the same as
Lua Code:
  1. Table1 = {
  2.      Table1a = {
  3.           Table1b = {
  4.           }
  5.      }
  6. }

If this is not what you were talking about, I repeat the above suggestion, give us a better example of what you want to achieve.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote