View Single Post
06-17-15, 01:08 PM   #3
gempir
A Black Drake
 
gempir's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2015
Posts: 84
Thanks! It's working.

Could you explain why the [1] is there?

My WTF folder Skada.lua looks like this, so i don't get why its windows[1]



Edit: Now I'm getting the Error: "Your Computer does not have enough memory to load settings from the following AddOn. Please disable some AddOns "Skada"






Lua Code:
  1. SkadaDB = {
  2.     ["hasUpgraded"] = true,
  3.     ["profileKeys"] = {
  4.         ["Wraths - Proudmoore"] = "Default",
  5.     },
  6.     ["profiles"] = {
  7.         ["Default"] = {
  8.             ["windows"] = {
  9.                 {
  10.                     ["barheight"] = 12,
  11.                     ["classicons"] = false,
  12.                     ["barslocked"] = true,
  13.                     ["background"] = {
  14.                         ["color"] = {
  15.                             ["a"] = 0,
  16.                             ["b"] = 0.501960784313726,
  17.                         },
  18.                         ["height"] = 72,
  19.                     },
  20.                     ["set"] = "total",
  21.                     ["y"] = -207.999816894531,
  22.                     ["barfont"] = "Roboto",
  23.                     ["title"] = {
  24.                         ["texture"] = "flat",
  25.                     },
  26.                     ["point"] = "TOPRIGHT",
  27.                     ["mode"] = "Damage",
  28.                     ["x"] = -3,
  29.                     ["bartexture"] = "Flat",
  30.                     ["barwidth"] = 174,
  31.                     ["barbgcolor"] = {
  32.                         ["a"] = 0,
  33.                         ["b"] = 0,
  34.                         ["g"] = 0,
  35.                         ["r"] = 0,
  36.                     },
  37.                     ["barcolor"] = {
  38.                         ["b"] = 0.337254901960784,
  39.                         ["g"] = 0.337254901960784,
  40.                         ["r"] = 0.337254901960784,
  41.                     },
  42.                     ["enabletitle"] = false,
  43.                 }, -- [1]
  44.                 ["x"] = -50,
  45.             },
  46.             ["icon"] = {
  47.                 ["hide"] = true,
  48.             },
  49.             ["columns"] = {
  50.                 ["Damage_Damage"] = false,
  51.             },
  52.             ["hidedisables"] = false,
  53.             ["reset"] = {
  54.                 ["instance"] = 3,
  55.             },
  56.         },
  57.     },
  58. }

Last edited by gempir : 06-17-15 at 01:25 PM.
  Reply With Quote