View Single Post
  #4  
Unread 08-11-2015, 04:51 AM
Thurallor's Avatar
Thurallor Thurallor is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: May 2013
Posts: 202
Quote:
Originally Posted by sealdriver
...e.lotroclient/Plugins/Iinferno/debuffhelper/Main.lua:4: Unable to resolve package "Turbine.Debug".
To fix this error, please follow the instructions at http://www.lotrointerface.com/wiki/H...bine_API_Files

Or, if you use Plugin Compendium to install your plugins for you, it should take care of installing the prerequisites.

Quote:
...roclient/Plugins/RadicusPlugins/StableGuy/Window.lua:159: attempt to index local 'Settings' (a nil value

...otroclient/Plugins/RadicusPlugins/StableGuy/Main.lua:11: Failed to import package "RadicusPlugins.StableGuy.Window".
This plugin has a bug in it that prevents it from working if it has not previously created the settings file (which is always true the first time you run it on a new machine). It must have been introduced after the author and most users created their settings file with a previous version of the plugin.

You can fix the problem yourself by editing the file RadicusPlugins/StableGuy/Window.lua. Change the third line in that file from
Code:
local Settings = Turbine.PluginData.Load(Turbine.DataScope.Character, "StableGuySettings");
to
Code:
local Settings = Turbine.PluginData.Load(Turbine.DataScope.Character, "StableGuySettings") or {};

Last edited by Thurallor : 08-11-2015 at 05:17 AM.
Reply With Quote