View Single Post
08/04/15, 01:14 PM   #3
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
Originally Posted by Talen-Shei View Post
if saveType == "Global" then
myGlobalVarReference.table = temptable -- this does not work
else
myPerCharacterVarReference.table = temptable -- this also does not work
end
It looks like Baertram gave you an example of how to use that code. I'm going to throw in a little extra info about saved vars.

I'm not sure what you are trying to accomplish.
  • Maybe you don't know how to use the saved variables?
  • Or maybe your trying to separate this data from the regular saved variables for some reason?

If you don't know how to use saved variables:
Warning: Spoiler


Either way my guess is that it is probably saving, just not where you want or your not accessing it correctly afterwords.
Warning: Spoiler


If for some reason your trying to separate this information your trying to save from the rest of the saved variable data, you could add a profile like this:
Warning: Spoiler

Last edited by circonian : 08/04/15 at 01:19 PM.
  Reply With Quote