Thread Tools Display Modes
03-07-10, 09:44 AM   #1
drakken2015
A Defias Bandit
Join Date: Nov 2009
Posts: 2
blank frames on login

It happens about 50% of the time. When I sign into a toon I get the background image of the UI but nothing else..

Strange thing is if I hit Enter and type "/reloadui" it reloads and looks fine.
 
03-07-10, 09:49 AM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
I've noticed that as well sometimes. I'm sure its my case of wiping the wtf files but this time I made a point of logging into each character without nUI before installing nUI and logging in so not sure whats happening there.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-07-10, 10:03 AM   #3
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
I actually think this problem is related to the key binding problem I'm trying to run down. There appears to be a "state" where the player is logging in but WoW has not yet initialized everything yet.

In the case you're referring to here, the problem is that the saved variables have not really been loaded when the "VARIABLES_LOADED" event fires. I've seen this myself. The "nUI_Options" variable is nil when this happens and that blows up the UI.

When you reload, because nUI_Options is written as nil on the log out, it causes nUI to reinitialize the saved variables.

It's a real mess and the symptoms are almost identical to the key binding problem with the exception that it is saved variables rather than binding data that is affected.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-07-10, 11:51 AM   #4
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Ah, kinda makes sense.

But when do you initialise the nUI_Options ?

All my addons initialise the saved variables with the default values outside of the functions themselves and thus before the saved variables are loaded and replace these defaults. I've never had a problem like this with that data that way.

Say for example:

MyAddon.lua in wtf folder
SVData["Table1"] = {
Item1 = "SavedVariable"
};

MyAddon_SVData.lua
SVData["Table1"] = {};
SVData["Table1"].Item1 = "SomeTextHere";
etc

MyAddon.lua - loaded after MyAddon_SVData.lua is processed
function OnEvent()
Event = PlayerLogin
SVData["Table1"].Item1 would = "SomeTextHere"
Event = LoadVariables
SVData["Table1"].Item1 would = "SavedVariable"
end

This way the addon doesn't bomb out but will use the default values until the saved variables are loaded into memory. It's the way I have always dealt with saved variables and I have yet to have any of my data tables show up as nil ... *touches wood*
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-07-10, 12:22 PM   #5
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
The nUI_Options variable is initialized when the Lua code is loaded by the UI. But when the VARIABLES_LOADED event fires, the initialized values have been overloaded by the "failed" saved variables read and that's what causes the blow-up.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-07-10, 12:37 PM   #6
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
If you are getting a blank screen at login, or you are getting the "attempt to perform arithmetic on a nil value" error in line 214 of nUI_ChatFrame.lua then try saving the attached file in [ Interface > AddOns > nUI > Integration ] and let me know if it fixes the problem.

.
Attached Files
File Type: lua nUI_ChatFrame.lua (22.7 KB, 611 views)
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-07-10, 12:41 PM   #7
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Originally Posted by spiel2001 View Post
The nUI_Options variable is initialized when the Lua code is loaded by the UI. But when the VARIABLES_LOADED event fires, the initialized values have been overloaded by the "failed" saved variables read and that's what causes the blow-up.
ah gotcha, annoying blighter
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-07-10, 01:46 PM   #8
mpsurge
A Defias Bandit
Join Date: Apr 2009
Posts: 2
I currently only have 2 toons:
The following happens randomly after logging off one toon and logging into another. Makes no difference which toon I use, see attached file.

I also had followed previous instructions to add the " -- " at line 214.


Listed is todays error and 2 previous errors

Date: 2010-03-07 13:33:45
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\nUI\Integration\nUI_ChatFrame.lua line 214:
attempt to perform arithmetic on a nil value
Debug:
[C]: ?
nUI\Integration\nUI_ChatFrame.lua:214:
nUI\Integration\nUI_ChatFrame.lua:112
AddOns:
Swatter, v5.8.4643 (CreepyKangaroo)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AucAdvanced, v5.8.4643 (CreepyKangaroo)
AucFilterBasic, v5.8.4643 (CreepyKangaroo)
AucFilterOutlier, v5.8.4643.2531
AucMatchUndercut, v5.8.4643.2531
AucStatHistogram, v5.8.4643 (CreepyKangaroo)
AucStatiLevel, v5.8.4643 (CreepyKangaroo)
AucStatPurchased, v5.8.4643 (CreepyKangaroo)
AucStatSales, v5.8.4643.2842
AucStatSimple, v5.8.4643 (CreepyKangaroo)
AucStatStdDev, v5.8.4643 (CreepyKangaroo)
AucStatWOWEcon, v5.8.4643.2530
AucUtilAHWindowControl, v5.8.4643.3311
AucUtilAppraiser, v5.8.4643.2530
AucUtilAskPrice, v5.8.4643.3175
AucUtilAutoMagic, v5.8.4643.3142
AucUtilCompactUI, v5.8.4643.2530
AucUtilEasyBuyout, v5.8.4643.3583
AucUtilFixAH, v5.8.4643 (CreepyKangaroo)
AucUtilGlypher, v5.8.4643.2545
AucUtilItemSuggest, v5.8.4643.3108
AucUtilPriceLevel, v5.8.4643.2545
AucUtilScanButton, v5.8.4643.2530
AucUtilScanFinish, v5.8.4643.3576
AucUtilScanProgress, v5.8.4643.2530
AucUtilScanStart, v5.8.4643.2530
AucUtilSearchUI, v5.8.4643.3655
AucUtilSimpleAuction, v5.8.4643.4546
AucUtilVendMarkup, v5.8.4643.2530
Babylonian, v5.1.DEV.130
BeanCounter, v5.8.4643 (CreepyKangaroo)
BloodyRare, v1.5
Configator, v5.1.DEV.130
DebugLib, v5.1.DEV.130
Enchantrix, v5.8.4643 (CreepyKangaroo)
EnchantrixBarker, v5.8.4643 (CreepyKangaroo)
Informant, v5.8.4643 (CreepyKangaroo)
nUI, v5.06.08 (Plus)
nUIDragon, v1.02.00
SlideBar, v5.8.4643 (CreepyKangaroo)
Stubby, v5.8.4643 (CreepyKangaroo)
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=62c)

*************

Date: 2010-03-06 16:31:28
ID: -1
Error occured in: Global
Count: 3
Message: ..\FrameXML\Cooldown.lua line 3:
attempt to compare number with nil
Debug:
[C]: ?
..\FrameXML\Cooldown.lua:3:
..\FrameXML\Cooldown.lua:2
[C]: CooldownFrame_SetTimer()
..\FrameXML\WatchFrame.lua:1082: WatchFrameItem_UpdateCooldown()
..\FrameXML\WatchFrame.lua:1098: WatchFrameItem_OnEvent()
[string "*:OnEvent"]:1:
[string "*:OnEvent"]:1
AddOns:
Swatter, v5.8.4643 (CreepyKangaroo)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AucAdvanced, v5.8.4643 (CreepyKangaroo)
AucFilterBasic, v5.8.4643 (CreepyKangaroo)
AucFilterOutlier, v5.8.4643.2531
AucMatchUndercut, v5.8.4643.2531
AucScanData, v5.8.4643 (CreepyKangaroo)
AucStatHistogram, v5.8.4643 (CreepyKangaroo)
AucStatiLevel, v5.8.4643 (CreepyKangaroo)
AucStatPurchased, v5.8.4643 (CreepyKangaroo)
AucStatSales, v5.8.4643.2842
AucStatSimple, v5.8.4643 (CreepyKangaroo)
AucStatStdDev, v5.8.4643 (CreepyKangaroo)
AucStatWOWEcon, v5.8.4643.2530
AucUtilAHWindowControl, v5.8.4643.3311
AucUtilAppraiser, v5.8.4643.2530
AucUtilAskPrice, v5.8.4643.3175
AucUtilAutoMagic, v5.8.4643.3142
AucUtilCompactUI, v5.8.4643.2530
AucUtilEasyBuyout, v5.8.4643.3583
AucUtilFixAH, v5.8.4643 (CreepyKangaroo)
AucUtilGlypher, v5.8.4643.2545
AucUtilItemSuggest, v5.8.4643.3108
AucUtilPriceLevel, v5.8.4643.2545
AucUtilScanButton, v5.8.4643.2530
AucUtilScanFinish, v5.8.4643.3576
AucUtilScanProgress, v5.8.4643.2530
AucUtilScanStart, v5.8.4643.2530
AucUtilSearchUI, v5.8.4643.3655
AucUtilSimpleAuction, v5.8.4643.4546
AucUtilVendMarkup, v5.8.4643.2530
Babylonian, v5.1.DEV.130
BeanCounter, v5.8.4643 (CreepyKangaroo)
BloodyRare, v1.5
Configator, v5.1.DEV.130
DebugLib, v5.1.DEV.130
Enchantrix, v5.8.4643 (CreepyKangaroo)
EnchantrixBarker, v5.8.4643 (CreepyKangaroo)
Informant, v5.8.4643 (CreepyKangaroo)
nUI, v5.06.08 (Plus)
nUIDragon, v1.02.00
SlideBar, v5.8.4643 (CreepyKangaroo)
Stubby, v5.8.4643 (CreepyKangaroo)
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=656)

***************

Date: 2010-03-05 18:21:02
ID: -2
Error occured in: Global
Count: 1
Message: ..\FrameXML\Cooldown.lua line 3:
attempt to compare number with nil
Debug:
[C]: ?
..\FrameXML\Cooldown.lua:3:
..\FrameXML\Cooldown.lua:2
[C]: CooldownFrame_SetTimer()
..\FrameXML\WatchFrame.lua:1082: WatchFrameItem_UpdateCooldown()
..\FrameXML\WatchFrame.lua:1098: WatchFrameItem_OnEvent()
[string "*:OnEvent"]:1:
[string "*:OnEvent"]:1
AddOns:
Swatter, v5.8.4643 (CreepyKangaroo)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AucAdvanced, v5.8.4643 (CreepyKangaroo)
AucFilterBasic, v5.8.4643 (CreepyKangaroo)
AucFilterOutlier, v5.8.4643.2531
AucMatchUndercut, v5.8.4643.2531
AucScanData, v5.8.4643 (CreepyKangaroo)
AucStatHistogram, v5.8.4643 (CreepyKangaroo)
AucStatiLevel, v5.8.4643 (CreepyKangaroo)
AucStatPurchased, v5.8.4643 (CreepyKangaroo)
AucStatSales, v5.8.4643.2842
AucStatSimple, v5.8.4643 (CreepyKangaroo)
AucStatStdDev, v5.8.4643 (CreepyKangaroo)
AucStatWOWEcon, v5.8.4643.2530
AucUtilAHWindowControl, v5.8.4643.3311
AucUtilAppraiser, v5.8.4643.2530
AucUtilAskPrice, v5.8.4643.3175
AucUtilAutoMagic, v5.8.4643.3142
AucUtilCompactUI, v5.8.4643.2530
AucUtilEasyBuyout, v5.8.4643.3583
AucUtilFixAH, v5.8.4643 (CreepyKangaroo)
AucUtilGlypher, v5.8.4643.2545
AucUtilItemSuggest, v5.8.4643.3108
AucUtilPriceLevel, v5.8.4643.2545
AucUtilScanButton, v5.8.4643.2530
AucUtilScanFinish, v5.8.4643.3576
AucUtilScanProgress, v5.8.4643.2530
AucUtilScanStart, v5.8.4643.2530
AucUtilSearchUI, v5.8.4643.3655
AucUtilSimpleAuction, v5.8.4643.4546
AucUtilVendMarkup, v5.8.4643.2530
Babylonian, v5.1.DEV.130
BeanCounter, v5.8.4643 (CreepyKangaroo)
BloodyRare, v1.5
Configator, v5.1.DEV.130
DebugLib, v5.1.DEV.130
Enchantrix, v5.8.4643 (CreepyKangaroo)
EnchantrixBarker, v5.8.4643 (CreepyKangaroo)
Informant, v5.8.4643 (CreepyKangaroo)
nUI, v5.06.08 (Plus)
nUIDragon, v1.02.00
SlideBar, v5.8.4643 (CreepyKangaroo)
Stubby, v5.8.4643 (CreepyKangaroo)
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=656)
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_030710_133816.jpg
Views:	606
Size:	125.0 KB
ID:	4058  
 
03-07-10, 02:04 PM   #9
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Have you tried the fix in this post?

http://www.wowinterface.com/forums/s...95&postcount=6
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-07-10, 07:08 PM   #10
Nightmare_Lord
A Cliff Giant
 
Nightmare_Lord's Avatar
Join Date: Oct 2008
Posts: 70
Error Reports

I got like 4 pages of error with this new patch with all my addon.

Page 1:

Date: 2010-03-07 19:53:34
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\nUI\Bars\nUI_MicroMenu.lua line 236:
attempt to index local 'options' (a nil value)
Debug:
[C]: ?
nUI\Bars\nUI_MicroMenu.lua:236: applyOptions()
nUI\Bars\nUI_MicroMenu.lua:292:
nUI\Bars\nUI_MicroMenu.lua:279
AddOns:
VirtualPlates, v3.3.0.1
Swatter, v5.7.4568 (KillerKoala)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AckisRecipeList, v1.0 2817
ACP, v3.2.0.26
ActionBarSaver, v
Altoholic, v3.3.001d
ArenaHistorian, v
AtlasLoot, vv5.10.00
AtlasLootFu, vv5.10.00
AucAdvanced, v5.7.4568 (KillerKoala)
AucFilterBasic, v5.7.4568 (KillerKoala)
AucFilterOutlier, v5.7.4568.2531
AucMatchUndercut, v5.7.4568.2531
AucStatClassic, v5.7.4568 (KillerKoala)
AucStatHistogram, v5.7.4568 (KillerKoala)
AucStatiLevel, v5.7.4568 (KillerKoala)
AucStatPurchased, v5.7.4568 (KillerKoala)
AucStatSales, v5.7.4568.2842
AucStatSimple, v5.7.4568 (KillerKoala)
AucStatStdDev, v5.7.4568 (KillerKoala)
AucStatWOWEcon, v5.7.4568.2530
AucUtilAHWindowControl, v5.7.4568.3311
AucUtilAppraiser, v5.7.4568.2530
AucUtilAskPrice, v5.7.4568.3175
AucUtilAutoMagic, v5.7.4568.3142
AucUtilCompactUI, v5.7.4568.2530
AucUtilEasyBuyout, v5.7.4568.3583
AucUtilFixAH, v5.7.4568 (KillerKoala)
AucUtilGlypher, v5.7.4568.2545
AucUtilItemSuggest, v5.7.4568.3108
AucUtilPriceLevel, v5.7.4568.2545
AucUtilScanButton, v5.7.4568.2530
AucUtilScanFinish, v5.7.4568.2530
AucUtilScanProgress, v5.7.4568.2530
AucUtilSearchUI, v5.7.4568.3655
AucUtilSimpleAuction, v5.7.4568.4553
AucUtilVendMarkup, v5.7.4568.2530
Auctionator, v2.5.9
AutoRes, v
autotrack2, v1.3
Babylonian, v5.1.DEV.130
BadBoy, v4.2.0.3
BadBoyCCleaner, v2.2.1
BadBoyLevels, v2.1.5
BeanCounter, v5.7.4568 (KillerKoala)
BonusScanner, v5.3
BreadCrumbs, v0.2.1
CLCRet, v
Clique, vwowi:revision
Configator, v5.1.DEV.130
DataStore, v3.3.001
DataStoreAchievements, v3.3.001
DataStoreAuctions, v3.3.001
DataStoreCharacters, v3.3.001
DataStoreContainers, v3.3.001
DataStoreCrafts, v3.3.001
DataStoreCurrencies, v3.3.001
DataStoreInventory, v3.3.001
DataStoreMails, v3.3.001
DataStorePets, v3.3.001
DataStoreQuests, v3.3.001
DataStoreReputations, v3.3.001
DataStoreSkills, v3.3.001
DataStoreSpells, v3.3.001
DataStoreStats, v3.3.001
DataStoreTalents, v3.3.001
DBMCore, v
DebugLib, v5.1.DEV.130
DKGetOverHere, v2.4.3
DPMCore, v
DrDamage, v1.7.6_release
EavesDrop, v2.1
Enchantrix, v5.7.4568 (KillerKoala)
EnchantrixBarker, v5.7.4568 (KillerKoala)
Factionizer, v30300.3
ForteCasting, v
ForteCooldown, v
ForteCore, v1.959.3
ForteDeathKnight, v
ForteDruid, v
ForteHealthstone, v
ForteHunter, v
ForteMage, v
FortePaladin, v
FortePriest, v
ForteRogue, v
ForteShaman, v
ForteShard, v
ForteSoulstone, v
ForteSummon, v
ForteTalent, v
ForteTimer, v
ForteVehicle, v
ForteWarlock, v
ForteWarrior, v
Gatherer, v3.1.14
GathererDBWowhead, v1.0.2009-12-09
GearScore, v3.1.14 - Beta
GetOverHere, v2.02
Gladius, vv1.1.1
HandyNotes, v1.1.5
Informant, v5.7.4568 (KillerKoala)
LFDAutoJoin, v1.1
LibRareSpawns, v1.0.30100
LightHeaded, v301
Livestock, v1.2.2
Mapster, v1.3.7
MikScrollingBattleText, v5.4.75
Necrosis, v3.0 (r224)
nUI, v5.06.09 (Plus)
nUIArtCataclysm, v1.0
nUIAuraButtons, v5.03.00
nUIDep, v1
nUIDK, v1.00.00
nUIDragon, v1.02.00
nUIIllidan, v1
nUIIndustrialCataclysmWorgen, v1.0
nUIInfoPanelDualStats, v1.03.00
nUIInfoPanelMagePorts, v1.03.03
nUIInfoPanelProfesions, v1.02.01
nUIShaman, v1.00.00
nUIStone, v1.02.00
nUIWarlock, v1
Omen, v3.0.9
OmniCC, v2.5.9
OmniCCPulse, v1.1.2
Outfitter, v4.10
Pawn, v1.3.2
Postal, v3.3.0
PowerAuras, v3.0.0E
Prat30, v3.3.6
Prat30HighCPUUsageModules, v
Prat30Libraries, v
QuickAuctions, v
RangeDisplay, v3.7.7
RatingBuster, v
Recount, v
ScrollingWatchFrame, v1.01.01
SellOMatic, vv1.2.0
SharedMedia, v3.0.3-178
SilverDragon, vv2.3.4
SkullMe, v3.0.2
SlideBar, v5.7.4568 (KillerKoala)
Stubby, v5.7.4568 (KillerKoala)
tabDB, v
Talented, vv2.4.4b-release
TalentedSpecTabs, vv2.4.4b-release
TankMastery, v
TankTotals, v
TargetForMe, v3.3.0h
TheCollector, v0.7.1
TipTac, v10.02.27
TipTacItemRef, v10.02.27
TipTacTalents, v10.02.27
Titan, v4.3.4.30300 - Revision 345
TitanAmmo, v4.3.4.30300
TitanBag, v4.3.4.30300
TitanClock, v4.3.4.30300
TitanCoords, v4.3.4.30300
TitanDBM, v
TitanGoldTracker, v4.3.4.30300
TitanLootType, v4.3.4.30300
TitanPerformance, v4.3.4.30300
TitanRecount, v0.06
TitanRegen, v4.3.4.30300
TitanRepair, v4.3.4.30300
TitanVolume, v4.3.4.30300
TitanWG, v1.1.8.30300
TitanXP, v4.3.4.30300
TomTom, vwowi:revision
VanasKoS, v4.21-$Rev: 432 $
ViperNotify, v1.3.8
XLoot, v0.91.1
XLootGroup, v0.61
XLootMaster, v0.81
XLootMonitor, v0.71
XToLevel, v3.3.1_11r
ZygorGuidesViewer, v2.0
ZygorTalentAdvisor, v2.0.240
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=1277)

Page 2

Date: 2010-03-07 19:53:34
ID: 2
Error occured in: Global
Count: 1
Message: ..\AddOns\nUI\Bars\nUI_XPBar.lua line 224:
attempt to index field 'options' (a nil value)
Debug:
[C]: ?
nUI\Bars\nUI_XPBar.lua:224:
nUI\Bars\nUI_XPBar.lua:139
nUI\Bars\nUI_XPBar.lua:351:
nUI\Bars\nUI_XPBar.lua:337
AddOns:
VirtualPlates, v3.3.0.1
Swatter, v5.7.4568 (KillerKoala)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AckisRecipeList, v1.0 2817
ACP, v3.2.0.26
ActionBarSaver, v
Altoholic, v3.3.001d
ArenaHistorian, v
AtlasLoot, vv5.10.00
AtlasLootFu, vv5.10.00
AucAdvanced, v5.7.4568 (KillerKoala)
AucFilterBasic, v5.7.4568 (KillerKoala)
AucFilterOutlier, v5.7.4568.2531
AucMatchUndercut, v5.7.4568.2531
AucStatClassic, v5.7.4568 (KillerKoala)
AucStatHistogram, v5.7.4568 (KillerKoala)
AucStatiLevel, v5.7.4568 (KillerKoala)
AucStatPurchased, v5.7.4568 (KillerKoala)
AucStatSales, v5.7.4568.2842
AucStatSimple, v5.7.4568 (KillerKoala)
AucStatStdDev, v5.7.4568 (KillerKoala)
AucStatWOWEcon, v5.7.4568.2530
AucUtilAHWindowControl, v5.7.4568.3311
AucUtilAppraiser, v5.7.4568.2530
AucUtilAskPrice, v5.7.4568.3175
AucUtilAutoMagic, v5.7.4568.3142
AucUtilCompactUI, v5.7.4568.2530
AucUtilEasyBuyout, v5.7.4568.3583
AucUtilFixAH, v5.7.4568 (KillerKoala)
AucUtilGlypher, v5.7.4568.2545
AucUtilItemSuggest, v5.7.4568.3108
AucUtilPriceLevel, v5.7.4568.2545
AucUtilScanButton, v5.7.4568.2530
AucUtilScanFinish, v5.7.4568.2530
AucUtilScanProgress, v5.7.4568.2530
AucUtilSearchUI, v5.7.4568.3655
AucUtilSimpleAuction, v5.7.4568.4553
AucUtilVendMarkup, v5.7.4568.2530
Auctionator, v2.5.9
AutoRes, v
autotrack2, v1.3
Babylonian, v5.1.DEV.130
BadBoy, v4.2.0.3
BadBoyCCleaner, v2.2.1
BadBoyLevels, v2.1.5
BeanCounter, v5.7.4568 (KillerKoala)
BonusScanner, v5.3
BreadCrumbs, v0.2.1
CLCRet, v
Clique, vwowi:revision
Configator, v5.1.DEV.130
DataStore, v3.3.001
DataStoreAchievements, v3.3.001
DataStoreAuctions, v3.3.001
DataStoreCharacters, v3.3.001
DataStoreContainers, v3.3.001
DataStoreCrafts, v3.3.001
DataStoreCurrencies, v3.3.001
DataStoreInventory, v3.3.001
DataStoreMails, v3.3.001
DataStorePets, v3.3.001
DataStoreQuests, v3.3.001
DataStoreReputations, v3.3.001
DataStoreSkills, v3.3.001
DataStoreSpells, v3.3.001
DataStoreStats, v3.3.001
DataStoreTalents, v3.3.001
DBMCore, v
DebugLib, v5.1.DEV.130
DKGetOverHere, v2.4.3
DPMCore, v
DrDamage, v1.7.6_release
EavesDrop, v2.1
Enchantrix, v5.7.4568 (KillerKoala)
EnchantrixBarker, v5.7.4568 (KillerKoala)
Factionizer, v30300.3
ForteCasting, v
ForteCooldown, v
ForteCore, v1.959.3
ForteDeathKnight, v
ForteDruid, v
ForteHealthstone, v
ForteHunter, v
ForteMage, v
FortePaladin, v
FortePriest, v
ForteRogue, v
ForteShaman, v
ForteShard, v
ForteSoulstone, v
ForteSummon, v
ForteTalent, v
ForteTimer, v
ForteVehicle, v
ForteWarlock, v
ForteWarrior, v
Gatherer, v3.1.14
GathererDBWowhead, v1.0.2009-12-09
GearScore, v3.1.14 - Beta
GetOverHere, v2.02
Gladius, vv1.1.1
HandyNotes, v1.1.5
Informant, v5.7.4568 (KillerKoala)
LFDAutoJoin, v1.1
LibRareSpawns, v1.0.30100
LightHeaded, v301
Livestock, v1.2.2
Mapster, v1.3.7
MikScrollingBattleText, v5.4.75
Necrosis, v3.0 (r224)
nUI, v5.06.09 (Plus)
nUIArtCataclysm, v1.0
nUIAuraButtons, v5.03.00
nUIDep, v1
nUIDK, v1.00.00
nUIDragon, v1.02.00
nUIIllidan, v1
nUIIndustrialCataclysmWorgen, v1.0
nUIInfoPanelDualStats, v1.03.00
nUIInfoPanelMagePorts, v1.03.03
nUIInfoPanelProfesions, v1.02.01
nUIShaman, v1.00.00
nUIStone, v1.02.00
nUIWarlock, v1
Omen, v3.0.9
OmniCC, v2.5.9
OmniCCPulse, v1.1.2
Outfitter, v4.10
Pawn, v1.3.2
Postal, v3.3.0
PowerAuras, v3.0.0E
Prat30, v3.3.6
Prat30HighCPUUsageModules, v
Prat30Libraries, v
QuickAuctions, v
RangeDisplay, v3.7.7
RatingBuster, v
Recount, v
ScrollingWatchFrame, v1.01.01
SellOMatic, vv1.2.0
SharedMedia, v3.0.3-178
SilverDragon, vv2.3.4
SkullMe, v3.0.2
SlideBar, v5.7.4568 (KillerKoala)
Stubby, v5.7.4568 (KillerKoala)
tabDB, v
Talented, vv2.4.4b-release
TalentedSpecTabs, vv2.4.4b-release
TankMastery, v
TankTotals, v
TargetForMe, v3.3.0h
TheCollector, v0.7.1
TipTac, v10.02.27
TipTacItemRef, v10.02.27
TipTacTalents, v10.02.27
Titan, v4.3.4.30300 - Revision 345
TitanAmmo, v4.3.4.30300
TitanBag, v4.3.4.30300
TitanClock, v4.3.4.30300
TitanCoords, v4.3.4.30300
TitanDBM, v
TitanGoldTracker, v4.3.4.30300
TitanLootType, v4.3.4.30300
TitanPerformance, v4.3.4.30300
TitanRecount, v0.06
TitanRegen, v4.3.4.30300
TitanRepair, v4.3.4.30300
TitanVolume, v4.3.4.30300
TitanWG, v1.1.8.30300
TitanXP, v4.3.4.30300
TomTom, vwowi:revision
VanasKoS, v4.21-$Rev: 432 $
ViperNotify, v1.3.8
XLoot, v0.91.1
XLootGroup, v0.61
XLootMaster, v0.81
XLootMonitor, v0.71
XToLevel, v3.3.1_11r
ZygorGuidesViewer, v2.0
ZygorTalentAdvisor, v2.0.240
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=1277)

Page 3

Date: 2010-03-07 19:53:35
ID: 3
Error occured in: Global
Count: 1
Message: ..\AddOns\nUI\Integration\nUI_ChatFrame.lua line 319:
attempt to perform arithmetic on a nil value
Debug:
[C]: ?
nUI\Integration\nUI_ChatFrame.lua:319: applyScale()
nUI\Integration\nUI_ChatFrame.lua:474: applyOptions()
nUI\Integration\nUI_ChatFrame.lua:578: configFrame()
nUI\Integration\nUI_ChatFrame.lua:119:
nUI\Integration\nUI_ChatFrame.lua:112
AddOns:
VirtualPlates, v3.3.0.1
Swatter, v5.7.4568 (KillerKoala)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AckisRecipeList, v1.0 2817
ACP, v3.2.0.26
ActionBarSaver, v
Altoholic, v3.3.001d
ArenaHistorian, v
AtlasLoot, vv5.10.00
AtlasLootFu, vv5.10.00
AucAdvanced, v5.7.4568 (KillerKoala)
AucFilterBasic, v5.7.4568 (KillerKoala)
AucFilterOutlier, v5.7.4568.2531
AucMatchUndercut, v5.7.4568.2531
AucStatClassic, v5.7.4568 (KillerKoala)
AucStatHistogram, v5.7.4568 (KillerKoala)
AucStatiLevel, v5.7.4568 (KillerKoala)
AucStatPurchased, v5.7.4568 (KillerKoala)
AucStatSales, v5.7.4568.2842
AucStatSimple, v5.7.4568 (KillerKoala)
AucStatStdDev, v5.7.4568 (KillerKoala)
AucStatWOWEcon, v5.7.4568.2530
AucUtilAHWindowControl, v5.7.4568.3311
AucUtilAppraiser, v5.7.4568.2530
AucUtilAskPrice, v5.7.4568.3175
AucUtilAutoMagic, v5.7.4568.3142
AucUtilCompactUI, v5.7.4568.2530
AucUtilEasyBuyout, v5.7.4568.3583
AucUtilFixAH, v5.7.4568 (KillerKoala)
AucUtilGlypher, v5.7.4568.2545
AucUtilItemSuggest, v5.7.4568.3108
AucUtilPriceLevel, v5.7.4568.2545
AucUtilScanButton, v5.7.4568.2530
AucUtilScanFinish, v5.7.4568.2530
AucUtilScanProgress, v5.7.4568.2530
AucUtilSearchUI, v5.7.4568.3655
AucUtilSimpleAuction, v5.7.4568.4553
AucUtilVendMarkup, v5.7.4568.2530
Auctionator, v2.5.9
AutoRes, v
autotrack2, v1.3
Babylonian, v5.1.DEV.130
BadBoy, v4.2.0.3
BadBoyCCleaner, v2.2.1
BadBoyLevels, v2.1.5
BeanCounter, v5.7.4568 (KillerKoala)
BonusScanner, v5.3
BreadCrumbs, v0.2.1
CLCRet, v
Clique, vwowi:revision
Configator, v5.1.DEV.130
DataStore, v3.3.001
DataStoreAchievements, v3.3.001
DataStoreAuctions, v3.3.001
DataStoreCharacters, v3.3.001
DataStoreContainers, v3.3.001
DataStoreCrafts, v3.3.001
DataStoreCurrencies, v3.3.001
DataStoreInventory, v3.3.001
DataStoreMails, v3.3.001
DataStorePets, v3.3.001
DataStoreQuests, v3.3.001
DataStoreReputations, v3.3.001
DataStoreSkills, v3.3.001
DataStoreSpells, v3.3.001
DataStoreStats, v3.3.001
DataStoreTalents, v3.3.001
DBMCore, v
DebugLib, v5.1.DEV.130
DKGetOverHere, v2.4.3
DPMCore, v
DrDamage, v1.7.6_release
EavesDrop, v2.1
Enchantrix, v5.7.4568 (KillerKoala)
EnchantrixBarker, v5.7.4568 (KillerKoala)
Factionizer, v30300.3
ForteCasting, v
ForteCooldown, v
ForteCore, v1.959.3
ForteDeathKnight, v
ForteDruid, v
ForteHealthstone, v
ForteHunter, v
ForteMage, v
FortePaladin, v
FortePriest, v
ForteRogue, v
ForteShaman, v
ForteShard, v
ForteSoulstone, v
ForteSummon, v
ForteTalent, v
ForteTimer, v
ForteVehicle, v
ForteWarlock, v
ForteWarrior, v
Gatherer, v3.1.14
GathererDBWowhead, v1.0.2009-12-09
GearScore, v3.1.14 - Beta
GetOverHere, v2.02
Gladius, vv1.1.1
HandyNotes, v1.1.5
Informant, v5.7.4568 (KillerKoala)
LFDAutoJoin, v1.1
LibRareSpawns, v1.0.30100
LightHeaded, v301
Livestock, v1.2.2
Mapster, v1.3.7
MikScrollingBattleText, v5.4.75
Necrosis, v3.0 (r224)
nUI, v5.06.09 (Plus)
nUIArtCataclysm, v1.0
nUIAuraButtons, v5.03.00
nUIDep, v1
nUIDK, v1.00.00
nUIDragon, v1.02.00
nUIIllidan, v1
nUIIndustrialCataclysmWorgen, v1.0
nUIInfoPanelDualStats, v1.03.00
nUIInfoPanelMagePorts, v1.03.03
nUIInfoPanelProfesions, v1.02.01
nUIShaman, v1.00.00
nUIStone, v1.02.00
nUIWarlock, v1
Omen, v3.0.9
OmniCC, v2.5.9
OmniCCPulse, v1.1.2
Outfitter, v4.10
Pawn, v1.3.2
Postal, v3.3.0
PowerAuras, v3.0.0E
Prat30, v3.3.6
Prat30HighCPUUsageModules, v
Prat30Libraries, v
QuickAuctions, v
RangeDisplay, v3.7.7
RatingBuster, v
Recount, v
ScrollingWatchFrame, v1.01.01
SellOMatic, vv1.2.0
SharedMedia, v3.0.3-178
SilverDragon, vv2.3.4
SkullMe, v3.0.2
SlideBar, v5.7.4568 (KillerKoala)
Stubby, v5.7.4568 (KillerKoala)
tabDB, v
Talented, vv2.4.4b-release
TalentedSpecTabs, vv2.4.4b-release
TankMastery, v
TankTotals, v
TargetForMe, v3.3.0h
TheCollector, v0.7.1
TipTac, v10.02.27
TipTacItemRef, v10.02.27
TipTacTalents, v10.02.27
Titan, v4.3.4.30300 - Revision 345
TitanAmmo, v4.3.4.30300
TitanBag, v4.3.4.30300
TitanClock, v4.3.4.30300
TitanCoords, v4.3.4.30300
TitanDBM, v
TitanGoldTracker, v4.3.4.30300
TitanLootType, v4.3.4.30300
TitanPerformance, v4.3.4.30300
TitanRecount, v0.06
TitanRegen, v4.3.4.30300
TitanRepair, v4.3.4.30300
TitanVolume, v4.3.4.30300
TitanWG, v1.1.8.30300
TitanXP, v4.3.4.30300
TomTom, vwowi:revision
VanasKoS, v4.21-$Rev: 432 $
ViperNotify, v1.3.8
XLoot, v0.91.1
XLootGroup, v0.61
XLootMaster, v0.81
XLootMonitor, v0.71
XToLevel, v3.3.1_11r
ZygorGuidesViewer, v2.0
ZygorTalentAdvisor, v2.0.240
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=1277)

Page 4

Date: 2010-03-07 19:53:36
ID: 4
Error occured in: Global
Count: 8
Message: ..\FrameXML\FloatingChatFrame.lua line 784:
attempt to perform arithmetic on a nil value
Debug:
[C]: ?
..\FrameXML\FloatingChatFrame.lua:784: FCF_OnUpdate()
[string "*:OnUpdate"]:1:
[string "*:OnUpdate"]:1
AddOns:
VirtualPlates, v3.3.0.1
Swatter, v5.7.4568 (KillerKoala)
NPCScan, v3.3.0.2
NPCScanOverlay, v3.3.0.4
AckisRecipeList, v1.0 2817
ACP, v3.2.0.26
ActionBarSaver, v
Altoholic, v3.3.001d
ArenaHistorian, v
AtlasLoot, vv5.10.00
AtlasLootFu, vv5.10.00
AucAdvanced, v5.7.4568 (KillerKoala)
AucFilterBasic, v5.7.4568 (KillerKoala)
AucFilterOutlier, v5.7.4568.2531
AucMatchUndercut, v5.7.4568.2531
AucStatClassic, v5.7.4568 (KillerKoala)
AucStatHistogram, v5.7.4568 (KillerKoala)
AucStatiLevel, v5.7.4568 (KillerKoala)
AucStatPurchased, v5.7.4568 (KillerKoala)
AucStatSales, v5.7.4568.2842
AucStatSimple, v5.7.4568 (KillerKoala)
AucStatStdDev, v5.7.4568 (KillerKoala)
AucStatWOWEcon, v5.7.4568.2530
AucUtilAHWindowControl, v5.7.4568.3311
AucUtilAppraiser, v5.7.4568.2530
AucUtilAskPrice, v5.7.4568.3175
AucUtilAutoMagic, v5.7.4568.3142
AucUtilCompactUI, v5.7.4568.2530
AucUtilEasyBuyout, v5.7.4568.3583
AucUtilFixAH, v5.7.4568 (KillerKoala)
AucUtilGlypher, v5.7.4568.2545
AucUtilItemSuggest, v5.7.4568.3108
AucUtilPriceLevel, v5.7.4568.2545
AucUtilScanButton, v5.7.4568.2530
AucUtilScanFinish, v5.7.4568.2530
AucUtilScanProgress, v5.7.4568.2530
AucUtilSearchUI, v5.7.4568.3655
AucUtilSimpleAuction, v5.7.4568.4553
AucUtilVendMarkup, v5.7.4568.2530
Auctionator, v2.5.9
AutoRes, v
autotrack2, v1.3
Babylonian, v5.1.DEV.130
BadBoy, v4.2.0.3
BadBoyCCleaner, v2.2.1
BadBoyLevels, v2.1.5
BeanCounter, v5.7.4568 (KillerKoala)
BonusScanner, v5.3
BreadCrumbs, v0.2.1
CLCRet, v
Clique, vwowi:revision
Configator, v5.1.DEV.130
DataStore, v3.3.001
DataStoreAchievements, v3.3.001
DataStoreAuctions, v3.3.001
DataStoreCharacters, v3.3.001
DataStoreContainers, v3.3.001
DataStoreCrafts, v3.3.001
DataStoreCurrencies, v3.3.001
DataStoreInventory, v3.3.001
DataStoreMails, v3.3.001
DataStorePets, v3.3.001
DataStoreQuests, v3.3.001
DataStoreReputations, v3.3.001
DataStoreSkills, v3.3.001
DataStoreSpells, v3.3.001
DataStoreStats, v3.3.001
DataStoreTalents, v3.3.001
DBMCore, v
DebugLib, v5.1.DEV.130
DKGetOverHere, v2.4.3
DPMCore, v
DrDamage, v1.7.6_release
EavesDrop, v2.1
Enchantrix, v5.7.4568 (KillerKoala)
EnchantrixBarker, v5.7.4568 (KillerKoala)
Factionizer, v30300.3
ForteCasting, v
ForteCooldown, v
ForteCore, v1.959.3
ForteDeathKnight, v
ForteDruid, v
ForteHealthstone, v
ForteHunter, v
ForteMage, v
FortePaladin, v
FortePriest, v
ForteRogue, v
ForteShaman, v
ForteShard, v
ForteSoulstone, v
ForteSummon, v
ForteTalent, v
ForteTimer, v
ForteVehicle, v
ForteWarlock, v
ForteWarrior, v
Gatherer, v3.1.14
GathererDBWowhead, v1.0.2009-12-09
GearScore, v3.1.14 - Beta
GetOverHere, v2.02
Gladius, vv1.1.1
HandyNotes, v1.1.5
Informant, v5.7.4568 (KillerKoala)
LFDAutoJoin, v1.1
LibRareSpawns, v1.0.30100
LightHeaded, v301
Livestock, v1.2.2
Mapster, v1.3.7
MikScrollingBattleText, v5.4.75
Necrosis, v3.0 (r224)
nUI, v5.06.09 (Plus)
nUIArtCataclysm, v1.0
nUIAuraButtons, v5.03.00
nUIDep, v1
nUIDK, v1.00.00
nUIDragon, v1.02.00
nUIIllidan, v1
nUIIndustrialCataclysmWorgen, v1.0
nUIInfoPanelDualStats, v1.03.00
nUIInfoPanelMagePorts, v1.03.03
nUIInfoPanelProfesions, v1.02.01
nUIShaman, v1.00.00
nUIStone, v1.02.00
nUIWarlock, v1
Omen, v3.0.9
OmniCC, v2.5.9
OmniCCPulse, v1.1.2
Outfitter, v4.10
Pawn, v1.3.2
Postal, v3.3.0
PowerAuras, v3.0.0E
Prat30, v3.3.6
Prat30HighCPUUsageModules, v
Prat30Libraries, v
QuickAuctions, v
RangeDisplay, v3.7.7
RatingBuster, v
Recount, v
ScrollingWatchFrame, v1.01.01
SellOMatic, vv1.2.0
SharedMedia, v3.0.3-178
SilverDragon, vv2.3.4
SkullMe, v3.0.2
SlideBar, v5.7.4568 (KillerKoala)
Stubby, v5.7.4568 (KillerKoala)
tabDB, v
Talented, vv2.4.4b-release
TalentedSpecTabs, vv2.4.4b-release
TankMastery, v
TankTotals, v
TargetForMe, v3.3.0h
TheCollector, v0.7.1
TipTac, v10.02.27
TipTacItemRef, v10.02.27
TipTacTalents, v10.02.27
Titan, v4.3.4.30300 - Revision 345
TitanAmmo, v4.3.4.30300
TitanBag, v4.3.4.30300
TitanClock, v4.3.4.30300
TitanCoords, v4.3.4.30300
TitanDBM, v
TitanGoldTracker, v4.3.4.30300
TitanLootType, v4.3.4.30300
TitanPerformance, v4.3.4.30300
TitanRecount, v0.06
TitanRegen, v4.3.4.30300
TitanRepair, v4.3.4.30300
TitanVolume, v4.3.4.30300
TitanWG, v1.1.8.30300
TitanXP, v4.3.4.30300
TomTom, vwowi:revision
VanasKoS, v4.21-$Rev: 432 $
ViperNotify, v1.3.8
XLoot, v0.91.1
XLootGroup, v0.61
XLootMaster, v0.81
XLootMonitor, v0.71
XToLevel, v3.3.1_11r
ZygorGuidesViewer, v2.0
ZygorTalentAdvisor, v2.0.240
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=1277)

this just showed up for me with the new patch. and of course nui layout loads still and sometimes nothing loads in it.
Attached Thumbnails
Click image for larger version

Name:	Wow 2010-03-07 20-21-25-19.jpg
Views:	570
Size:	198.3 KB
ID:	4068  

Last edited by Nightmare_Lord : 03-07-10 at 07:23 PM.
 
03-07-10, 07:24 PM   #11
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Okay, logged into one of my characters :

Keybinds apparently fine as always with nUI loaded for me. But the almost regular nil bug. This is what is happening before the little fix is added:

[2010/03/08 01:20:51-6-x1]: ..._InfoPanel_SmartDebuff\nUI_InfoPanel_SmartDebuff.lua:96: attempt to index global 'SMARTDEBUFF_Options' (a nil value):
..._InfoPanel_SmartDebuff\nUI_InfoPanel_SmartDebuff.lua:171: in function `setEnabled':
..._InfoPanel_SmartDebuff\nUI_InfoPanel_SmartDebuff.lua:148: in function `initPanel':
nUI-5.06.09 (Plus)\Integration\nUI_InfoPanel.lua:793: in function `applyScale'
nUI-5.06.09 (Plus)\Integration\nUI_InfoPanel.lua:908: in function `applyOptions'
nUI-5.06.09 (Plus)\Integration\nUI_InfoPanel.lua:937: in function `applySkin'
nUI-5.06.09 (Plus)\Main\nUI.lua:249: in function <Interface\AddOns\nUI\Main\nUI.lua:137>

---

[2010/03/08 01:20:52-6-x1]: nUI-5.06.09 (Plus)\Bars\nUI_XPBar.lua:224: attempt to index field 'options' (a nil value)
nUI-5.06.09 (Plus)\Bars\nUI_XPBar.lua:351: in function <Interface\AddOns\nUI\Bars\nUI_XPBar.lua:337>

---

[2010/03/08 01:20:53-6-x147]: Interface\FrameXML\FloatingChatFrame.lua:784: attempt to perform arithmetic on a nil value:
<string>:"*:OnUpdate":1: in function <[string "*:OnUpdate"]:1>

---
As you can see another addon's options table is nil as well as the chat frame and nUI's XPBar.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_030810_012418.jpg
Views:	617
Size:	201.8 KB
ID:	4069  
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-07-10, 07:39 PM   #12
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Logged Out to desktop
Copied the adjusted file from post : http://www.wowinterface.com/forums/s...95&postcount=6
Relaunched WoW and logged into same character

This is the result :

[2010/03/08 01:27:09-7-x1]: nUI-5.06.09 (Plus)\Bars\nUI_MicroMenu.lua:236: attempt to index local 'options' (a nil value)
nUI-5.06.09 (Plus)\Bars\nUI_MicroMenu.lua:292: in function <Interface\AddOns\nUI\Bars\nUI_MicroMenu.lua:279>

---

[2010/03/08 01:27:09-7-x1]: nUI-5.06.09 (Plus)\Bars\nUI_XPBar.lua:224: attempt to index field 'options' (a nil value)
nUI-5.06.09 (Plus)\Bars\nUI_XPBar.lua:351: in function <Interface\AddOns\nUI\Bars\nUI_XPBar.lua:337>

---

[2010/03/08 01:27:09-7-x1]: nUI-5.06.09 (Plus)\Integration\nUI_ChatFrame.lua:319: attempt to perform arithmetic on a nil value
nUI-5.06.09 (Plus)\Integration\nUI_ChatFrame.lua:474: in function `applyOptions'
nUI-5.06.09 (Plus)\Integration\nUI_ChatFrame.lua:578: in function `configFrame'
nUI-5.06.09 (Plus)\Integration\nUI_ChatFrame.lua:119: in function <Interface\AddOns\nUI\Integration\nUI_ChatFrame.lua:112>

---

[2010/03/08 01:27:09-7-x1]: Blizzard_CombatLog\Blizzard_CombatLog.lua:3614: attempt to perform arithmetic on a nil value
Blizzard_CombatLog\Blizzard_CombatLog.lua:3677: in function `Blizzard_CombatLog_QuickButton_OnClick'
Blizzard_CombatLog\Blizzard_CombatLog.lua:3480: in function <...ace\AddOns\Blizzard_CombatLog\Blizzard_CombatLog.lua:3476>
<in C code>: in function `Show'
Interface\FrameXML\ChatFrame.lua:2338: in function `ChatFrame_ConfigEventHandler':
Interface\FrameXML\ChatFrame.lua:2316: in function `ChatFrame_OnEvent':
<string>:"*:OnEvent":1: in function <[string "*:OnEvent"]:1>
Blizzard_CombatLog\Blizzard_CombatLog.lua:3352: in function <...ace\AddOns\Blizzard_CombatLog\Blizzard_CombatLog.lua:3331>

---

[2010/03/08 01:27:09-7-x88]: Interface\FrameXML\FloatingChatFrame.lua:784: attempt to perform arithmetic on a nil value:
<string>:"*:OnUpdate":1: in function <[string "*:OnUpdate"]:1>

---
This clicked Yes on the button shown in the screenshot and logged out to desktop.
Relogged in and this time 4 errors but same screenshot ... checking which one disappeared - CombatLog error is the only one that disappeared on this log in.
Now trying /nui rl to see the result. /nui rl fixed the display on that log in.
Logged out to desktop.
Logged back in and back to the same 5 errors above but without the conversion question.

This image was the result at log in, pretty much the same for each log in attempt. The second image is the addons loaded at the time. :
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_030810_012825.jpg
Views:	602
Size:	196.4 KB
ID:	4070  Click image for larger version

Name:	addons.jpg
Views:	580
Size:	146.0 KB
ID:	4071  
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-07-10, 09:23 PM   #13
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
So this problem is every log in and won't go away now?

*scratches head*
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-07-10, 09:43 PM   #14
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Originally Posted by spiel2001 View Post
So this problem is every log in and won't go away now?

*scratches head*
For that character at least at any rate. I'll test my other girls and see whether there are any differences between them that may be a trigger. Reloading the UI will work for that session but then the next session I would have to repeat that.

Okay, logged into this character .. had a bug with some changes I did to my watchframe addon so logged out, fixed them then logged in to and from desktop like before. Works fine on this character. Checked Bindings and she's set to character Bindings. Just in case thats a factor rofl.

Logged out to desktop, logged back in and picked the other character that was bugging, and now working fine. Go figure.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_030810_053923.jpg
Views:	616
Size:	253.2 KB
ID:	4072  Click image for larger version

Name:	WoWScrnShot_030810_054405.jpg
Views:	603
Size:	216.6 KB
ID:	4073  
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 03-07-10 at 11:44 PM.
 
03-08-10, 10:16 AM   #15
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Well, noticed I was getting a bugsack error message whenever I logged out linked to altoholic so turned that addon off and its linked DataStore addons. I think that may have had some cause to the blank frames at login.

Went through all of the characters and some popped up with the convert to general key bindings message which I selected Yes for and others still had display glitches ( possibly due to not having been able to update nUIs WTF perhaps ? ) so did a /nui rl and then moved on to the next character. Repeated this until I could go through all characters without the need to do anything. Logged to desktop to repeat process. No problems on second run through. Now to log into each character directly from desktop log in.

okay, all seems to be well. Added altoholic back and tried them all again and despite the error on logout they all seem to be loading up fine. At least today rofl. Will test them all again tomorrow and see if its a daily occurrence.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 03-08-10 at 10:19 AM.
 
03-10-10, 11:45 AM   #16
LordBaldric
A Deviate Faerie Dragon
Join Date: Mar 2009
Posts: 18
I've actually had this error as well, and I can repeat it by logging into different characters, perhaps its 5, might be more and then on the 6th, I'll get the blank frames and have to /nui reload. Generally happens when I've moved some stuff around my toons and gone back to my bank alt. Not sure if thats any help at all, but it did occur again today after the above actions.
 
03-10-10, 05:22 PM   #17
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
I have yet to have it re-occur since the last update. In my case it seems to be tied to how clean the install is. The older the data is the less likely the error will reoccur.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-10-10, 07:22 PM   #18
Foughlan
A Murloc Raider
Join Date: Mar 2010
Posts: 5
For what I can add

I was going to post a thread but searched first (do I get brownie points? )

I have the same error in my installation. Clean, less than a week, brand spanking new machine running 4GB RAM and Windows 7. Unlike what (I think) Xrystal is experiencing I do not get this all the time. I can log in / log out to an alt and log back to my character and I have no issues. I do however get this periodically. I think on the order of less than 1/4 times.

Below is the error list that came up this time. The last time (early afternoon - I've been playing most of the day) I had something on the order of 207 separate errors and the Blizzard interface actually kicked me off the Addons to the standard interface due to the continual errors adding up.

As I see you all are working it I will let this lie unless you want/need more information.

Keep up the outstanding work.



Date: 2010-03-10 20:11:23
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\nUI\Integration\nUI_ChatFrame.lua line 214:
attempt to perform arithmetic on a nil value
Debug:
[C]: ?
nUI\Integration\nUI_ChatFrame.lua:214:
nUI\Integration\nUI_ChatFrame.lua:112
AddOns:
Swatter, v3.1.14 (<%codename%>)
AucAdvanced, v5.7.4568 (KillerKoala)
AucFilterBasic, v5.7.4568 (KillerKoala)
AucFilterOutlier, v5.7.4568.2531
AucMatchUndercut, v5.7.4568.2531
AucStatClassic, v5.7.4568 (KillerKoala)
AucStatHistogram, v5.7.4568 (KillerKoala)
AucStatiLevel, v5.7.4568 (KillerKoala)
AucStatPurchased, v5.7.4568 (KillerKoala)
AucStatSales, v5.7.4568.2842
AucStatSimple, v5.7.4568 (KillerKoala)
AucStatStdDev, v5.7.4568 (KillerKoala)
AucStatWOWEcon, v5.7.4568.2530
AucUtilAHWindowControl, v5.7.4568.3311
AucUtilAppraiser, v5.7.4568.2530
AucUtilAskPrice, v5.7.4568.3175
AucUtilAutoMagic, v5.7.4568.3142
AucUtilCompactUI, v5.7.4568.2530
AucUtilEasyBuyout, v5.7.4568.3583
AucUtilFixAH, v5.7.4568 (KillerKoala)
AucUtilGlypher, v5.7.4568.2545
AucUtilItemSuggest, v5.7.4568.3108
AucUtilPriceLevel, v5.7.4568.2545
AucUtilScanButton, v5.7.4568.2530
AucUtilScanFinish, v5.7.4568.2530
AucUtilScanProgress, v5.7.4568.2530
AucUtilSearchUI, v5.7.4568.3655
AucUtilSimpleAuction, v5.7.4568.4553
AucUtilVendMarkup, v5.7.4568.2530
Babylonian, v5.1.DEV.130
BeanCounter, v5.7.4568 (KillerKoala)
Configator, v5.1.DEV.130
DebugLib, v5.1.DEV.130
Enchantrix, v5.7.4568 (KillerKoala)
EnchantrixBarker, v5.7.4568 (KillerKoala)
Gatherer, v3.1.14
GathererHUD, v3.1.14
Informant, v5.7.4568 (KillerKoala)
LightHeaded, v301
nUI, v5.06.05 (Lite)
nUIInfoPanelGuildChat, v2.01.05
Skada, v1.2-26
SkadaAbsorbs, v1.0
SkadaCC, v1.0
SkadaDamage, v1.0
SkadaDamageTaken, v1.0
SkadaDeaths, v1.0
SkadaDebuffs, v1.0
SkadaDispels, v1.0
SkadaEnemies, v1.0
SkadaFailbot, v1.0
SkadaHealing, v1.0
SkadaPower, v1.0
SkadaThreat, v1.0
SlideBar, v3.1.14 (<%codename%>)
Stubby, v5.7.4568 (KillerKoala)
TomTom, v236
BlizRuntimeLib_enUS v3.3.2.30300 <us>
(ck=723)
 
03-10-10, 07:25 PM   #19
Petrah
A Pyroguard Emberseer
 
Petrah's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2008
Posts: 2,988
Originally Posted by Xrystal View Post
I have yet to have it re-occur since the last update. In my case it seems to be tied to how clean the install is. The older the data is the less likely the error will reoccur.
I think you may be right! If memory serves me correctly, I've only ever had this happen on the PTR when the only thing I have installed is nUI (fresh install of the PTR and nUI both). I don't believe I've ever had this happen to me on the live server.
__________________
♪~ ( ) I My Sonos!
AddOn Authors: If your addon spams the chat box with "Addon v8.3.4.5.3 now loaded!", please add an option to disable it!
 
03-11-10, 05:08 AM   #20
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Originally Posted by Foughlan View Post
I was going to post a thread but searched first (do I get brownie points? )
~lol~

Yes... you get brownie points for searching for the thread first... but I'm afraid I have to take away 5 points for being 5 updates behind (5.06.05) -- the current release is 5.06.10 and the specific error you're posting has been fixed.

That said, it is possible that if you update to 5.06.10 you may get a new error in the Micro Menu. I would be interested to know if that happens or not.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » blank frames on login


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