View Single Post
01/20/18, 04:57 AM   #2
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Originally Posted by Haaxor1689 View Post
Hi, I would like to do an extension for someone else's addon and for that I would need to acces it's SavedVariables without modifying that addon. Is this possible? Thanks.
The answer is as most times in life: Yes, with a big but:
The saved variables are global, so yes you can, but:
1. You have to wait until the other addons are loaded. One way to do this is to make your addon
## OptionalDependsOn: in the manifest.txt.
2. Reading is ok, but for changing properties, you have check what the code does, which normally change them.
  Reply With Quote