View Single Post
12-14-13, 06:39 AM   #10
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Those errors would indicate that kgPanels is loading your panels before Stuf has loaded. If kgPanels has a "dependency" field, add Stuf to it. If not, add this to your OnLoad script:

Code:
if not INSERT_STUF_GLOBAL_HERE then
     LoadAddOn("INSERT_STUF_FOLDER_NAME_HERE")
end
If that still doesn't work, it can be made to work; it'll just require more code.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote