Thread Tools Display Modes
Prev Previous Post   Next Post Next
11-28-16, 06:03 PM   #32
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,327
The error is telling you that you're trying to write to a table that doesn't exist. You need to create a table before you can store entries in it.

Originally Posted by _Max_Cavalera_ View Post
Code:
if not addonDB["chars"][realm .. " " .. name] then
addonDB["chars"][realm .. " " .. name]["profile"] = "default"
Assuming you have the addonDB table defined as you posted earlier, you need to create a table at [realm .. " " .. name] before you can store anything at ["profile"].
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)

Last edited by SDPhantom : 11-28-16 at 06:33 PM.
  Reply With Quote
 

WoWInterface » Developer Discussions » Lua/XML Help » Learning, need help


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off