Sorry for the long response time. I actually use Rico's Minimap... And I have it unlocked, but it doesn't make my quest tracker movable. I'm tempted to start messing around with the lua file after I make a copy of it. You would think that it would be the same place for all characters. The only one it works correctly for is the first character I loaded after installing the addon. I'll be back to check for more ideas :)
Hmm, wonder if I can anchor it in place with Visor. I guess it can't hurt to try.
I have tested everything I could think of over the last few months. Today, because of the patch day adjustment, I disabled CT Mod. All of a sudden the check box for locking the tracker became functional. I have now removed all CT stuff from my system, since I can not imagine what that would have to do with your tracker lock. I like Beql and I hope it continues to be maintained.
I seem to be getting errors when I shift click quests to move them into the Tracker and back. Example:
I shift click one I don't want on the list and it errors. then I Shift Click one I do, and the previous ones check mark goes away and the new one does nothing, or maybe shows up... stuff like that.
Shift Clicking the group works, they all get tracked or not.
I seem to be getting errors when I shift click quests to move them into the Tracker and back. Example:
I shift click one I don't want on the list and it errors. then I Shift Click one I do, and the previous ones check mark goes away and the new one does nothing, or maybe shows up... stuff like that.
Shift Clicking the group works, they all get tracked or not.
i am getting the same thing happen here is the error i get...
Error: attempt to call method 'QuestLogTitleButton_OnClick' (a nil value)
File: Interface\AddOns\beql\questlog.lua
Line: 383
Count: 5
Eh, did find a couple things still broken after commenting that line out. For one, I couldn't shift+click on headers to add all quests in that header to the tracker. So yeah, beql could still use a little love. :P
Lots of repeated taint events when I am fighting, this is causing my tracker to move / dissapear / go all over the screen. Plus my tracker sometimes goes the entire width of my screen so I can only move the tracker around in that area instead of being able to click on stuff.
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:Show()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:524
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetHeight()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:525
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetWidth()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:529
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:ClearAllPoints()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:22
3/31 11:39:31.317 UIParent_ManageFramePositions()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:543
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetPoint()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:23
3/31 11:39:31.317 UIParent_ManageFramePositions()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:543
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:ClearAllPoints()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:643 TrackerLockCornerForGrowth()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:545
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetPoint()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:644 TrackerLockCornerForGrowth()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:545
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
For those of you getting the QuestLogTitleButton_OnClick error, Try commenting out lines 382-384 of questlog.lua:
if IsAddOnLoaded("Lightheaded") then
LightHeaded:QuestLogTitleButton_OnClick(frame, button)
end
by putting -- infront of each of those lines. Seems to clear up my errors completely.
Although, since bEQL handles linking quest names into chat differently than blizz does now, you can't link quests in chat like the default quest log (it'll just link the name as text - it won't be a clickable link). If anybody knows how to do this or can point me in the direction of a mod that does this successfully, i might be able to figure it out.
edit: This just in, found out how to fix it so that you can link quests like everybody else!!! in questlog.lua again, comment out line 355:
Working like a charm for me! And since I actually have no idea how to do anything involving actually updating mods... if somebody could test these out and commit the changes i'm sure people would be happy.
For those of you getting the QuestLogTitleButton_OnClick error, Try commenting out lines 382-384 of questlog.lua:
if IsAddOnLoaded("Lightheaded") then
LightHeaded:QuestLogTitleButton_OnClick(frame, button)
end
by putting -- infront of each of those lines. Seems to clear up my errors completely.
Although, since bEQL handles linking quest names into chat differently than blizz does now, you can't link quests in chat like the default quest log (it'll just link the name as text - it won't be a clickable link). If anybody knows how to do this or can point me in the direction of a mod that does this successfully, i might be able to figure it out.
edit: This just in, found out how to fix it so that you can link quests like everybody else!!! in questlog.lua again, comment out line 355:
Working like a charm for me! And since I actually have no idea how to do anything involving actually updating mods... if somebody could test these out and commit the changes i'm sure people would be happy.
That change appears to have worked for me. I'll test it some more asap.
Hmm, wonder if I can anchor it in place with Visor. I guess it can't hurt to try.
http://www.wowace.com/forums/index.php?topic=11100.msg194249#msg194249
http://forums.worldofwarcraft.com/thread.html?topicId=5591019536&sid=1
looks like BEQL doesn't need to do something anymore in regards to LH.
I shift click one I don't want on the list and it errors. then I Shift Click one I do, and the previous ones check mark goes away and the new one does nothing, or maybe shows up... stuff like that.
Shift Clicking the group works, they all get tracked or not.
i am getting the same thing happen here is the error i get...
Error: attempt to call method 'QuestLogTitleButton_OnClick' (a nil value)
File: Interface\AddOns\beql\questlog.lua
Line: 383
Count: 5
... hope this can be fixed.
(change it to read)
Everything appears to still work OK here after commenting that out.
Lots of repeated taint events when I am fighting, this is causing my tracker to move / dissapear / go all over the screen. Plus my tracker sometimes goes the entire width of my screen so I can only move the tracker around in that area instead of being able to click on stuff.
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:Show()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:524
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetHeight()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:525
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetWidth()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:529
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:ClearAllPoints()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:22
3/31 11:39:31.317 UIParent_ManageFramePositions()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:543
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetPoint()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:23
3/31 11:39:31.317 UIParent_ManageFramePositions()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:543
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:ClearAllPoints()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:643 TrackerLockCornerForGrowth()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:545
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
3/31 11:39:31.317 An action was blocked in combat because of taint from beql - QuestWatchFrame:SetPoint()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:644 TrackerLockCornerForGrowth()
3/31 11:39:31.317 Interface\AddOns\beql\tracker.lua:545
3/31 11:39:31.317 Interface\FrameXML\QuestLogFrame.lua:68 QuestLog_OnEvent()
3/31 11:39:31.317 QuestLogFrame:OnEvent()
by putting -- infront of each of those lines. Seems to clear up my errors completely.
Although, since bEQL handles linking quest names into chat differently than blizz does now, you can't link quests in chat like the default quest log (it'll just link the name as text - it won't be a clickable link). If anybody knows how to do this or can point me in the direction of a mod that does this successfully, i might be able to figure it out.
edit: This just in, found out how to fix it so that you can link quests like everybody else!!! in questlog.lua again, comment out line 355:
and insert a new line right after it with this:
Working like a charm for me! And since I actually have no idea how to do anything involving actually updating mods... if somebody could test these out and commit the changes i'm sure people would be happy.
I keep getting this same error.. anyone know a fix?
Date: 2008-04-01 22:45:58
ID: 51
Error occured in: Global
Count: 1
Message: ..\AddOns\beql\questlog.lua line 383:
attempt to call method 'QuestLogTitleButton_OnClick' (a nil value)
Debug:
[C]: QuestLogTitleButton_OnClick()
beql\questlog.lua:383:
beql\questlog.lua:273
(tail call): ?
[string "*:OnClick"]:1:
[string "*:OnClick"]:1
AddOns:
Aloft, vr45867
ArenaPointer, v1.1
ArkInventory, v2.26
Atlas, v1.11.0
AtlasBattlegrounds, v1.11.0
AtlasDungeonLocs, v1.11.0
AtlasEntrances, v1.11.0
AtlasFlightPaths, v1.11.0
AtlasOutdoorRaids, v1.11.0
AtlasLoot, vAtlasLoot Enhanced v4.04.00
AtlasLootBCInstances, v4.04.00
AtlasLootCrafting, v4.04.00
AtlasLootOldInstances, v4.04.00
AtlasLootRepFactions, v4.04.00
AtlasLootSetsandPvP, v4.04.00
AtlasLootWorldLoot, v4.04.00
AutoBar, v2.03.00.31 beta
Automaton, v1.3.0
Bartender3, v3.1.2 r65221
beql, v0.98
Buffalo
Capping, v2.4.001
Cartographer, vr67263
Cellular, v2.4.005
ClearFont2, v2.4
ClearFont2FontPack, v1.0
CowTip, vr67123
Cryolysis2, v2.0 Beta
cyCircled, v0.5
cyCircledChococat, v1.0
cyCircledGoldOrbs, v1.0
cyCircledOnyx, v2.4.0.0
cyCircledsimpleSphere, v1.0
cyCircledVolGold, v2.4.0.0
cyCircledVolM, v2.3.0.0
cyCircledVol, v1.0
EnhTooltip, v5.0.PRE.2988
FuBarClockFu, v3.0
FuBarDuraTek, v$Revision: 59108 $
FuBarHonorFu, v2.0
FuBarLocationFu, v3.0
FuBarMoneyFu, v20000-1
FuBarPerformanceFu, v2.0
FuBar, v60201
Gatherer, v3.1.1
Grid, v60898
Informant, v5.0.PRE.2988
Lexan, v2.1
Ace2
LightHeaded, v219
MBB
MobInfo2, v3.51
MoveAnything
NDragIt, vr63025
Niagara, v1.0 r49275
oGlow, v1.1
OgriLazy, v1.0.7
OmniCC, v2.0.8
OptionHouse
Parrot, v1.0r60900
Prat, v2.0 67125
simpleMinimap, v20100-6
Spyglass, vr61348
StopTheSpam, v2.00.11200
Stubby, v52
Swatter, v5.0.PRE.2988
TomTom, v125
VendorBait, v2.0.3.394
XPerlArcaneBar
XPerlParty
XPerlPartyPet
XPerlPlayer
XPerlPlayerPet
XPerlTarget
XPerlTargetTarget
XPerl, v2.4.0
-Bl?nd
Read up two posts. Thanks.
That change appears to have worked for me. I'll test it some more asap.
Couldn't we track more than 10 quests before? I did get a message when I wanted to add a new quest to the tracker about can't track more than 10.