Thread Tools Display Modes
02-16-18, 04:39 PM   #1
Panthergaming
A Deviate Faerie Dragon
 
Panthergaming's Avatar
Join Date: Feb 2018
Posts: 10
Not sure how to Fix this

Message: [string "Talents BG_OnShow"]:3: attempt to index global 'SkadaBarWindowTotals' (a nil value)
Time: 02/16/18 22:38:18
Count: 2
Stack: [string "Talents BG_OnShow"]:3: attempt to index global 'SkadaBarWindowTotals' (a nil value)
[C]: ?
[string "Talents BG_OnShow"]:3: in function <[string "Talents BG_OnShow"]:1>
[C]: in function `Show'
Interface\FrameXML\UIParent.lua:2980: in function <Interface\FrameXML\UIParent.lua:2975>
[C]: in function `ShowUIPanel'
...rface\AddOns\MoveAnything\Libs\!NoTaint\!NoTaint.lua:5: in function <...rface\AddOns\MoveAnything\Libs\!NoTaint\!NoTaint.lua:3>
[C]: in function `PlayerTalentFrame_Toggle'
Interface\FrameXML\UIParent.lua:710: in function `ToggleTalentFrame'
Interface\FrameXML\MainMenuBarMicroButtons.lua:474: in function <Interface\FrameXML\MainMenuBarMicroButtons.lua:473>
[C]: in function `Click'
[string "Microrollover 03_OnClickUp"]:2: in function <[string "Microrollover 03_OnClickUp"]:1>

Locals:
  Reply With Quote
02-16-18, 05:46 PM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
It looks like you used MoveAnything to move your Skada window, then uninstalled Skada or Skada changed. Now, MoveAnything is trying to mess with a frame that no longer exists or doesn't exist by that name.

With WoW not running (completely exit), open the file World of Warcraft\WTF\Account\<accountID>\SavedVariables\MoveAnything.lua in a text editor, search for SkadaBarWindowTotals, then delete that section. It will look similar to this:

MAKE A COPY OF THIS FILE BEFORE YOU EDIT IT

Lua Code:
  1. ["SkadaBarWindowTotals"] = {
  2.     ["orgScale"] = 1,
  3.     ["disableLayerBackground"] = true,
  4.     ["name"] = "SkadaBarWindowTotals",
  5.     ["orgPos"] = {
  6.         "BOTTOM", -- [1]
  7.         "UIParent", -- [2]
  8.         "BOTTOM", -- [3]
  9.         0, -- [4]
  10.         229.000015258789, -- [5]
  11.     },
  12.     ["scale"] = 0.699999988079071,
  13.     ["disableLayerArtwork"] = true,
  14.     ["disableLayerBorder"] = true,
  15.     ["pos"] = {
  16.         "TOP", -- [1]
  17.         "ExtraActionButton1", -- [2]
  18.         "BOTTOM", -- [3]
  19.         0, -- [4]
  20.         -24.9999923706055, -- [5]
  21.     },
  22. },

Delete just that section, from the top line in the example above to the }, right before the next named frame.

Last edited by Kanegasi : 02-16-18 at 05:49 PM.
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Not sure how to Fix this

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off