View Single Post
03/24/14, 05:48 PM   #14
skyraker
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 154
But what I am getting at is using the local reference name in both my files rather than the global name.

Code:
MS = {}
local thisMS = MS
thisMS.count = 0
Then my other file can use:

Code:
thisMS.count = thisMS.count + 1
Would that be valid?
  Reply With Quote