LATEST NEWS

General Bug Reporting

img
Dec
01

Known Bugs:

Before submitting a bug, please check this list to make sure you aren’t repeating a submission!

Submit Your Bug:

When submitting your addon bug, you MUST include the following:

  • The version number of your WoW-Pro installation
  • Any error text that WoW provided when your bug happened
  • Information about the guide you were using when the bug happened, including:
    • Faction (Alliance/Horde)
    • Zone
    • What step you were on
  • As many details as possible about what you were doing when the bug occurred.

Including this information will help us troubleshoot and possibly get you a temporary solution to the bug, and get it fixed as quickly as possible!

  • img
    Jun 6, 2011 @ 15:34 pm

    Check in Carbonites options,Check in Carbonites options, there’s an option for how many maps it will draw at a time 

  • img
    EluneMustDie
    Jun 6, 2011 @ 10:09 am

    Thanks for the fast replyAh, OK, I had not realized it was that simple, thanks for that.  Found the TomTom lock option today but it is causing another issue with Carbonite — the inability to look at adjacent maps in detail.  Well, thanks for the information, and I certainly understand the minimalist approach, because indeed, not everyone is going to want/need something like Carbonite.  Anyway, that solves my problem, thanks again.

  • img
    Jun 5, 2011 @ 14:36 pm

    Carbonite’s arrow works withRemoving the dependency is very simple, open the WoWPro.toc file(…World of WarcraftInterfaceAddOnsWoWProWoWPro.toc), then delete line 5 (## Dependencies: TomTom).Carbonite’s arrow works with our addon, I should know I use it and edited the addon code for it to work. TomTom’s can be locked in place, it’s in the options. Indeed our addon will work perfectly well without TomTom installed provided that Carbonite is.The reason we don’t offically call Carbonite as a dependency is because it does a lot more than we need for our addon, we use TomTom as it’s solely the arrow and waypoint functionality that we need.

  • img
    EluneMustDie
    Jun 5, 2011 @ 12:13 pm

    Please remove TomTom dependency checkI grabbed the 2.1.14a update and the add-on disappeared from my icons. Looking at the reason showed that I was missing a dependency (TomTom). Well of course I was. I already have one add-on that gives me arrows to where I am going, two would be (and is) redundant. Could you please remove that annoying dependency check so that I can remove Tom-Tom and re-enable the emulation in Carbonite? I miss having quest pickup destinations show up on my minimap. I used to be able to see exactly where I was going to pick up the next quest, now all I have is a second arrow (which seems to be missing the vital option of locking it in place at that) pointing to a direction and giving a distance. It is a major downgrade from having it show up on the map (fortunately once I have the quests I can tick them off manually in the quest tracker in Carbonite and get my auto-scaling map back, but I have to do it manually for each quest, so, it is definitely a bit more awkward).

  • img
    Jun 3, 2011 @ 12:33 pm

    Big Red Button fixReplace lines 649-685 of WoWPro_Frames.lua with this: — Skip Steps Dialog — function WoWPro:CreateSkipStepsDialog()    local frame, titletext = WoWPro:CreateDialogBox(“Skip Steps”, 250, 250)    frame:SetClampedToScreen(true)     local explanation = frame:CreateFontString()    explanation:SetPoint(“TOPLEFT”, frame, “TOPLEFT”, 10, -70-titletext:GetHeight())    explanation:SetJustifyH(“LEFT”)    explanation:SetFontObject(GameFontNormal)    explanation:SetWidth(frame:GetWidth()-20)    explanation:SetTextColor(1, 1, 1)    local button1 = CreateFrame(“Button”, “Okay”, frame, “OptionsButtonTemplate”)    button1:SetPoint(“TOP”, titletext, “BOTTOM”, 0, -5)    button1:SetHeight(25)    button1:SetWidth(160)    local button1text = button1:CreateFontString()    button1text:SetPoint(“TOP”, button1, “TOP”, 0, -7)    button1text:SetFontObject(GameFontNormalSmall)    button1text:SetText(“Okay”)    button1text:SetTextColor(1, 1, 1)    button1:SetScript(“OnClick”, function(self, button)        WoWPro.SkipStepsDialog:Hide()    end)     local button2 = CreateFrame(“Button”, “Cancel”, frame, “OptionsButtonTemplate”)    button2:SetPoint(“TOP”, titletext, “BOTTOM”, 0, -30)    button2:SetHeight(25)    button2:SetWidth(160)    local button2text = button2:CreateFontString()    button2text:SetPoint(“TOP”, button2, “TOP”, 0, -7)    button2text:SetFontObject(GameFontNormalSmall)    button2text:SetText(“Cancel”)    button2text:SetTextColor(1, 1, 1)    button2:SetScript(“OnClick”, function(self, button)        WoWPro.SkipStepsDialog:Hide()    end) 

  • img
    Jun 3, 2011 @ 5:54 am

    Big red buttonI’ll have a look, I’ve got an idea what it is.I’ll PM you any fix I come up with LM.However as it 5am I’m going to sleep 1st! 😛

  • img
    Jun 3, 2011 @ 2:24 am

    Happened on Uldur, TwilightYour toons’s SavedVariablesWowPro.lua file keeps a list of all the skipped QIDs and the skipped guide lines, by guide.It also has your toons’s list of completed quests.  See if that is consistent.Are you resetting the guide using the BigRedButton in the config panel or the dialog option when right clicking on the quest frame? 

  • img
    Jun 3, 2011 @ 2:20 am

    Now thats a BIG red button (Cancel Button over-laps text)OK, now *I* know we have not changed that code recently.Looking at the function that creates this dialog, it seems the buttons are created with a fixed width.I’ll have to leave this to people more adept with the UI code.

  • img
    Jun 3, 2011 @ 0:44 am

    Happened on Uldur, TwilightHappened on Uldur, Twilight Hammer and Vashj’ir – looking at the files, they appear to show valid QID’s, but it’s showing a ! accept on steps I know have already been done.  It’s resetting the guide that causes the problem.  I go in, make a couple of changes, want to see my changes, but find it resets to a much earlier quest with a ! accept step, and know they’ve already been done.  I end up having to skip through them to get back to the part I’m on.

  • img
    Jun 3, 2011 @ 0:41 am

    Cancel Button over-laps textv2.1.14, the Cancel button overlaps the list of steps it is skipping, see http://imageshack.us/photo/my-images/192/bigcancel.jpg/

  • img
    Jun 2, 2011 @ 0:23 am

    What guide/faction/steps wereWhat guide/faction/steps were you on? Also try resetting the guide after a reload, doesn’t always work but it should correct itself. Sometimes I would have to reset a few times. Plus there may be steps, like Note steps, that may not have a QID and right-clicking to skip works.

  • img
    Jun 2, 2011 @ 0:04 am

    2.1.1.4 lag/crash when skippingWhen skipping in 2.1.1.4, the whole WoW program seems to lag terribly, hanging for a 10-20 seconds before it produces a wierd box with what appears to be a whole screen heigh button saying Cancel – if I skip a second time, then the whole program hangs for a 1-2 minutesI’m also finding it no longer remembering what quests I’ve done (i have to “try” to skip my way through everytime I use /reload ui, which is where the above was noticed), and has become unusable when needing to reload/skip stepsAny ideas what else I need to look at?

  • img
    May 26, 2011 @ 19:44 pm

    Doesn’t loadDo you have the minimap icon? (Pandaren) If so clicking it should unhide the window, if it’s hiddenDoes anything show up on the addons list in game?  (Escape, Interface, Addons – if you have a lot of addons scroll down as WoWPro will be towards the bottom of the big list)Have you tried it with just WoWPro (+module), TomTom and BugSack/Swatter enabled?

  • img
    May 25, 2011 @ 17:53 pm

    Re: Doesnt load.Do you get any error messages in your chat? Do you get an error popup?Do you have swatter installed?

  • img
    Jocke0364
    May 25, 2011 @ 16:32 pm

    Doesnt load.Hello, My name is Jocke and ive used ur addon before. It was maybe 2 months ago since i quitted. it worked fine back then.Now that ive downloaded the latest version and everything, It doesnt work. It just doenst load, i have checked so it is activated in the addon menu. I dont know what the problem is, Please answer me as soon as possible! 

  • img
    May 17, 2011 @ 12:09 pm

    Re: Right. So I’ve finallyYeah, these parts are broken.Strangely, I am in the middle of trying to fix them, as our Addon and TomTom are misbehvaing at startup and after loading screens.My changes are in the works, but are too raw to release.  Not suprisingly, changing startup order has bizzare side effects. 

  • img
    May 16, 2011 @ 19:23 pm

    Right. So I’ve finallyRight. So I’ve finally decided to report this bug. It used to not bother me that much and it’s hard to describe it, but now it annoys me enough for me to report it to you guys 🙂 (I use v2.1.12)I have 2 problems:Whenever I log in on my max lvl character, I have the Wow-pro, dailies and leveling checked, because if I want to start leveling a lower zone for achievements it’s quite useful.Okay, so I log in, I have the addon disabled by default because it was disabled the last time I logged out.The quest frame thingy is hidden as it should be, BUT.. TomTom still thinks it’s enabled and points to the next step in the guide I was last on.Now, since I have the Wow-pro addon disabled (Interface > AddOns > WoW-Pro > Enable Addon is NOT checked) I *think* it’s a problem in Wow-pro and not TomTom.The other problem I have is, when I have disabled the addon and I go into an instance or raid, the quest guide frame thingy is showing when I get out again. To hide it I have to enable the addon and disable it again.Is this something you can fix? It would be really appreciated 🙂

  • img
    May 6, 2011 @ 11:05 am

    Re: I have the same issue. ForOh dear.   I found a bug in my  new mapping code which was preveting it from working.If you are having the problem in stock 2.1.11 with the latest TomTom, then there is another bug lurking.Grrr.

  • img
    May 6, 2011 @ 3:25 am

    I have the same issue. ForI have the same issue. For example:C The Warsong Farms|QID|11686|N|Go NE to Torp’s Farm. Then SW to the
    Granary, and finally NW to the
    Slaughterhouse.|M|36,53;35,55;39.51,47.37|The Addon/TomTom points only to the first coordinate (36,53) and doesn’t update for the next coordinate when you reach the first. I’m not sure if this is an Addon problem, TomTom problem, or if the syntax has been changed and we’re all adding multiple coords in wrong lol!!

  • img
    May 3, 2011 @ 15:23 pm

    Multiple coordinatesEvery time there are multiple coordinates, TomTom always only displays the first coordinate/arrow.I have the lates WoW-pro addon version (2.1.11) as well as TomTom.This has happened in most guides I’ve been doing, but most notably in the Uldum (H) guide, since multiple coordinates are used a lot there.

  • img
    Apr 10, 2011 @ 19:05 pm

    Switching from Curse Version to WoWPro VersionAh, OK.   If the guide you were in in the Curse version disappeared or was replaced with a new guide, then you would get this error.I will add code to check to see if the current guide has evaporated and if so, then revert to the NIL guide and let the user pic again.Sorry it took so long to diagnose.

  • img
    Apr 9, 2011 @ 11:58 am

    Ah I see, I didAh I see, I did misundertstand.  Glad it is working for you.

  • img
    BomSquad
    Apr 9, 2011 @ 5:45 am

    I think you misunderstood. II think you misunderstood. I removed the curse version, installed the version from this website and THEN I got the error message…It was a fresh installation of the addon from this site. But no worries, the error has not come back since I reported the bug.

  • img
    Apr 8, 2011 @ 8:46 am

    That is most likely why sinceThat is most likely why since I think the Curse version is severely outdated.

  • img
    BomSquad
    Apr 8, 2011 @ 6:06 am

    I got the error severalI got the error several times, but now that I actually submitted a bug report on it, I can no longer reproduce the error. Figures! LOLI was in Vashj’ir when it occured. I had just reloaded the add on from the website on 4-6-2011 (I had been using a copy downloaded from Curse)

  • img
    Apr 7, 2011 @ 13:47 pm

    WoWPro_Leveling_Parser.lua line 271: attempt to index field ‘?’ WoWPro_Leveling_Parser.lua line 271:   local sequence = WoWPro.Guides[GID].sequenceHmm, this implies your guide ID might be wrong.  Which guide were you in? I see you have Swatter.   Was this the first error?  It is possible you got more than one and this is just the last one in a chain.

  • img
    BomSquad
    Apr 7, 2011 @ 13:08 pm

    Error when logging inDate: 2011-04-07 06:59:50ID: 1Error occured in: GlobalCount: 1Message: …ceAddOnsWoWPro_LevelingWoWPro_Leveling_Parser.lua line 271:   attempt to index field ‘?’ (a nil value)Debug:   (tail call): ?   …ceAddOnsWoWPro_LevelingWoWPro_Leveling_Parser.lua:271: LoadGuide()   WoWProWoWPro_Broker.lua:53: LoadGuide()   WoWProWoWPro.lua:183:      WoWProWoWPro.lua:99   (tail call): ?   [C]: ?   [string “safecall Dispatcher[1]”]:9:      [string “safecall Dispatcher[1]”]:5   (tail call): ?   Ace3AceAddon-3.0AceAddon-3.0.lua:543: EnableAddon()   Ace3AceAddon-3.0AceAddon-3.0.lua:635:      Ace3AceAddon-3.0AceAddon-3.0.lua:621   [C]: LoadAddOn()   ..FrameXMLUIParent.lua:244: UIParentLoadAddOn()   ..FrameXMLUIParent.lua:267: CombatLog_LoadUI()   ..FrameXMLUIParent.lua:521:      ..FrameXMLUIParent.lua:494AddOns:  Swatter, v5.9.4960 (WhackyWallaby)  Ace3, v  ACP, vr140   AdvancedTradeSkillWindow, v  Altoholic, v4.0.006b  Arh, v0.91  ArkInventory, v3.02  ArkInventoryRules, v  ArkInventoryRulesExample, v1.00  AucAdvanced, v5.9.4960 (WhackyWallaby)  AucFilterBasic, v5.9.4960 (WhackyWallaby)  AucFilterOutlier, v5.9.4960.2531  AucMatchUndercut, v5.9.4960.2531  AucStatHistogram, v5.9.4960 (WhackyWallaby)  AucStatiLevel, v5.9.4960 (WhackyWallaby)  AucStatPurchased, v5.9.4960 (WhackyWallaby)  AucStatSales, v5.9.4960.2842  AucStatSimple, v5.9.4960 (WhackyWallaby)  AucStatStdDev, v5.9.4960 (WhackyWallaby)  AucStatWOWEcon, v5.9.4960.2530  AucUtilAHWindowControl, v5.9.4960.3311  AucUtilAppraiser, v5.9.4960.2530  AucUtilAskPrice, v5.9.4960.3175  AucUtilAutoMagic, v5.9.4960.3142  AucUtilCompactUI, v5.9.4960.2530  AucUtilEasyBuyout, v5.9.4960.3583  AucUtilFixAH, v5.9.4960 (WhackyWallaby)  AucUtilGlypher, v5.9.4960.2545  AucUtilItemSuggest, v5.9.4960.3108  AucUtilPriceLevel, v5.9.4960.2545  AucUtilScanButton, v5.9.4960.2530  AucUtilScanFinish, v5.9.4960.2530  AucUtilScanProgress, v5.9.4960.2530  AucUtilScanStart, v5.9.4960.4819  AucUtilSearchUI, v5.9.4960.3655  AucUtilSimpleAuction, v5.9.4960.4546  AucUtilVendMarkup, v5.9.4960.2530  AutoLoot, v1.4  AutoRepair, v  Babylonian, v5.1.DEV.130  Bartender4, v4.4.17  BeanCounter, v5.9.4960 (WhackyWallaby)  BulkMail2Inbox, v4.0.5  Carbonite, v4.034  CarboniteTransfer, v1.01  Configator, v5.1.DEV.282  CookingHelper, v1.73  DataStore, v4.0.001  DataStoreAchievements, v4.0.001  DataStoreAuctions, v4.0.001  DataStoreCharacters, v4.0.006  DataStoreContainers, v4.0.001  DataStoreCrafts, v4.0.001  DataStoreCurrencies, v4.0.001  DataStoreInventory, v4.0.005b  DataStoreMails, v4.0.001  DataStorePets, v4.0.001  DataStoreQuests, v4.0.001  DataStoreReputations, v4.0.001  DataStoreSpells, v4.0.001  DataStoreStats, v4.0.001  DataStoreTalents, v4.0.001  DebugLib, v5.1.DEV.275  dottracker, v2.12  Enchantrix, v5.9.4960 (WhackyWallaby)  EnchantrixBarker, v5.9.4960 (WhackyWallaby)  FBBroker, v1.10 (FB v1.0)  FishingAce, v0.5.5i  FishingBuddy, v1.0.1  FlightMap, v4.0.1  Gatherer, v3.2.3  GathererDBWowhead, v1.0.2010-12-19  GatherHud, vv1.1.8  GatherMate2, v1.12  LibActionButton10, v  LibBabbleZone30, v  LibDBIcon10, v  LibStub, v  LoadIT, v  MetaHud, v40000-8.7  OmniCC, v4.0.waffles12  Panda, v4.0.0.34  Pawn, v1.5.8  Prospect, vv201103051621  ShowMyDPS, v0.4.0  SlideBar, v5.9.4960 (WhackyWallaby)  SpellFlash, v5.95.1  SpellFlashCore, v1.39  Stubby, v5.9.4960 (WhackyWallaby)  TomTom, vv40000-1.0.9  TradeSkillMaster, vv0.1.7Beta  TradeSkillMasterAuctioning, vv0.2Beta  TradeSkillMasterCrafting, vv0.2.6Beta  WoWPro, v2.1.7  WoWProDailies, v2.1.7  WoWProLeveling, v2.1.7  BlizRuntimeLib_enUS v4.0.6.40000 <us>  (ck=b1f) 

  • img
    Mar 23, 2011 @ 20:12 pm

    Manually Checking off a TaskTo manually check off a task, what you want to do is instead of left clicking on the task you want to rigth click it.  This will only check off that task and nothing else.

  • img
    Anonymous
    Mar 23, 2011 @ 17:07 pm

    Manually Checking off a TaskI Have had points where the guide fails to update a task, and I have to reload ui (Thats not a big deal)
    But I have had other times where either due to a eairly exit (See that as crash) or that I  have already have taken a quest. That the addon will not recognise I have the quest, but if I try and manually click the Task off it then wants me to Skip a bunch of quest even if I hit cancel.
    I love to have the function of manually being able to check off quest givers, quest objectetives, quest Completes, Indiviualy, if needed with out the add on autmatically skiping several other quests down the line.
    Now so far I have been able to work around a lot of this (But its usually takes clearing the current guide, exiting wow without loging out. [becuase a reload ui doesnt fix this] and then reloging in.) so it would be so much easier if we could just manually check off or uncheck an individual Task  

  • img
    danbellinger1
    Mar 16, 2011 @ 2:09 am

    IssueIt appears that it was only happening on the first guide I utilized and then when I went to a different one, it righted itself. I was playing as Blood Elf Priest in Hillsbarad at the time.

  • img
    Mar 16, 2011 @ 1:01 am

    Re: WoW-Pro Waypoints1st, are both WoW-Pro and TomTom fully upto date (WoW-Pro v2.1.5, TomTom v40000-1.2.6)?2nd, is this happening all the time, or only with a specific guide? If so which guide and faction, as well as what steps does this problem happen on?

  • img
    danbellinger1
    Mar 16, 2011 @ 0:35 am

    WoW-Pro WaypointsThe waypoints are me it seems. Whenever I move onto the next quest, the waypoint is me and not where I am actually supposed to be going. Any help?

  • img
    Mar 10, 2011 @ 23:52 pm

    Could you ..Could you post us a snapshot of what it looks like?

  • img
    Methods
    Mar 10, 2011 @ 22:59 pm

    AddonNo matter which guide i use. While im playing a huge list of quests will just appear in the middle of my screen with no way to get them to go away besides logging out.

  • img
    Mar 6, 2011 @ 12:20 pm

    Open with settingsThe re-install will not help with the default open with settings.To change that, follow the instructions in this link:http://support.microsoft.com/kb/307859  

  • img
    Mar 6, 2011 @ 4:15 am

    Open with settingsThe re-install will not help with the default open with settings.To change that, follow the instructions in this link:http://support.microsoft.com/kb/307859  

  • img
    Flameballz
    Mar 6, 2011 @ 3:02 am

    WordPad and LUA filesThanks, I tried reinstalling wowpro but all of the lua files were default set to open with wordpad on the new install also.  I ended up doing a restore. i back my stuff up about every otherday or so.  I didnt think to get any of the error messages. i downloaded notepad++ so i wouldnt mess it up agian.
      thanks for all the help and thanks for a damn good guide!
     

  • img
    Mar 5, 2011 @ 20:18 pm

    Re: deepholm guide issues fixFix checked in as https://github.com/Jiyambi/WoW-Pro-Guides/commit/14725646481a79f9e925a80e66d0346cd90752db .In for next Wednesday.  

  • img
    Mar 5, 2011 @ 20:15 pm

    WordPad and LUA filesIt is more likely you incorrectly edited the .LUA file than that the <OpenWith> setting is causing problem.On my machine I have it set to another editor entierly and it does not bother WoW.The safest thing to do is to delete the WowPro directories and then re-install WowPro.If that does not work, install Swatter from http://auctioneeraddon.com/dl/AddOns/!Swatter-5.6.4424.zip and then send us the error that it captures.  Also sometimes the <WOW>/Log/FrameXML.log file has nice messages.  

  • img
    Flameballz
    Mar 5, 2011 @ 18:41 pm

    .LUA filesNow i feel like a tool! I went to open up the WoWPro_Frames.lua file and clicked the wrong “OPEN WITH” and changed the opening program to word pad………. how do i change it back?  it changed every .lua file to open with word pad.  WoW still runs but i have no WoW-Pro add-ons.  i tried downloading the newest version but that didnt work….  anyhelp would be awesome. im running XP Pro service pack 2 thanks

  • img
    Mar 4, 2011 @ 4:47 am

    deepholm guide issues fixOpen up WoWPro_Frames.lua inside the WoWPro folder in your addon and C+P the following over the exsisting text on lines 649-683 then save it. You can open the lua with any text editor, Notepad++ being a very good free one. — Skip Steps Dialog —function WoWPro:CreateSkipStepsDialog()    local frame, titletext = WoWPro:CreateDialogBox(“Skip Steps”, 250, 250)    frame:SetClampedToScreen(true)    local explanation = frame:CreateFontString()    explanation:SetPoint(“TOPLEFT”, frame, “TOPLEFT”, 10, -70-titletext:GetHeight())    explanation:SetJustifyH(“LEFT”)    explanation:SetFontObject(GameFontNormal)    explanation:SetWidth(frame:GetWidth()-20)    explanation:SetTextColor(1, 1, 1)    local button1 = CreateFrame(“Button”, “Okay”, frame, “OptionsButtonTemplate”)    button1:SetPoint(“TOP”, titletext, “BOTTOM”, 0, -5)    button1:SetHeight(25)    button1:SetWidth(160)    local button1text = button1:CreateFontString()    button1text:SetPoint(“TOP”, button1, “TOP”, 0, -7)    button1text:SetFontObject(GameFontNormalSmall)    button1text:SetText(“Okay”)    button1text:SetTextColor(1, 1, 1)    button1:SetScript(“OnClick”, function(self, button)        WoWPro.SkipStepsDialog:Hide()    end)     local button2 = CreateFrame(“Button”, “Cancel”, frame, “OptionsButtonTemplate”)    button2:SetPoint(“TOP”, titletext, “BOTTOM”, 0, -30)    button2:SetHeight(25)    button2:SetWidth(160)    local button2text = button2:CreateFontString()    button2text:SetPoint(“TOP”, button2, “TOP”, 0, -7)    button2text:SetFontObject(GameFontNormalSmall)    button2text:SetText(“Cancel”)    button2text:SetTextColor(1, 1, 1)    button2:SetScript(“OnClick”, function(self, button)        WoWPro.SkipStepsDialog:Hide()    end)

    Now when you click left click on a step that has too many lines for the height of your screen at least the okay/cancel buttons are at the top of the list, and the top of the list can’t go outside of your screen

  • img
    Mar 4, 2011 @ 4:23 am

    Deepholm guide issuesOK after a quick check to see what was happening, I’ve found out that this is the second step that you’re checking off (“Heros Call”) causing this, and the column you get in the centre of your screen is the skip step confirmation list.However, because checking off that step, causes 109 other steps to be skipped, the skip step list doesn’t fit onto the screen, so you can’t click the buttons to either confirm or cancel your actions. I’m working on a fix, currently managed to get the buttons back on screen even thought the list still goes off it.

  • img
    Mar 4, 2011 @ 3:43 am

    Re: Deepholm guide issuesIf you only need to check off a couple of steps always right click them, left click ticks off everything related to that quest including any further quests that had any dependencies on any step automatically checked off like this. Hence why deepholm guide checked off 70 odd steps when you left clicked it.Try resetting the guide, then right clicking the steps you want to cancel.That list that pops up looks like the confirmation list of the quests that will be skipped when you left click a step, it has a confirmation botton on it, although in your case its going to be off screen.Update to version 2.1.4 as this may help matters.  

  • img
    Mar 3, 2011 @ 21:16 pm

    Thanks for theThanks for the suggestion!For the first suggestion, I always try to do this in my guides (or I say “the turn in should pop up automatically” if it normally does). But I’m not sure all the authors did this, so it’s something that should be tested.For the second suggestion, that would definitely be nice. The API I found just opened a single panel quest log, but I’m betting one of the current developers could find the correct API to open the full quest log!Even better might be if the addon had a button to turn in the quest just by clicking it, but I’m not sure how do-able that would be. Still, something to look in to!

  • img
    Flameballz
    Mar 3, 2011 @ 17:10 pm

    Deepholm 82-83 Guide IssuesVERSION: 2.1.2
    Alliance
    I havent been able to find any thing on this issue.  I just moved to the deepholm area and loaded the guide for it the first two quests that popped up said that if i didnt have them to just click them off and move on. i did so which in turn checked off 70+ quests in the guide and greyed them out so i couldnt uncheck them.  i was able to uncheck the first 4 quests and the rest unchecked themselves. it is also jumping my guide to quests i cant get yet.
    http://tinyurl.com/4ka3vjtalso, when i uncheck some of the quests a “List” of the quests in the deepholm guide pop up in a solid column in the center of my screen taking up 1/3 of the screen and i cant get rid of it unless i log out and back in.
    I have :
    TomTom
    Recount
    WoW-Pro
    WoW-Pro dalies
    WoW-Pro leveling

  • img
    Mar 3, 2011 @ 16:40 pm

    Re: Guide 64 – 66 not appearing in guide listSomeone else already reported it and a fix will appear in the next release.Please see https://wow-pro.com/wiki/source_code_terokkar_forest_alliance#comment-36469 if you want to fix it yourself before then.

  • img
    Floofy
    Mar 3, 2011 @ 11:08 am

    Guide 64 – 66 not appearing in guide listVersion number: 2.1.4I’m playing as an alliance character and my guide is bugged I belive, I redownloaded the latest addon just to be safe and the guide still doesn’t show upMy friends guide is showing up which is supposed to be in the “Terokkar Forest” in OutlandsI have no idea what is causing this to go wrong and WoW Pro is the only addon I have on my game.Here is a picture to show you what I meanhttp://tinypic.com/view.php?pic=2l8ytmt&s=7

  • img
    Mar 2, 2011 @ 19:40 pm

    “Self” Quest Turn InsI love your addon and have been using it since it was in beta.  Before that I used the online versions.  Kudos for a GREAT product.
    This is not a bug per se, but a suggestion for (I think) better implemtation.  I wonder if I dont have something set up right tho, since no one else (that I can find) has commented on it.
    The issue is “self” quest turn ins.  Ocassionally in the mouseover comments on the guides they will say to turn in to your quest log and that is pretty much the only indication besides opening your quest log that these are “self” turn ins.  
    When there are self quest turn ins and you click on that line in the wow pro addon guide, it opens a quest log, but it only opens a 1 pane quest log and the turn in button is in pane 2, so I have to click on my quest log (L) to open the “real” quest log that is 2 panes wide and thus shows the “complete quest” button.
    I expect this is interaction between 2 addons so, I tried disabling other addons for and haven’t come across a self quest yet to know. (I’m a bad tester)  I will try to remember to try it next time I come across one.
    Addons that could be affecting this
    Questguru 2.2.3
    Lightheaded r331
    WowPro 2.1.4
    So basically, I think it would be VERY handy to have 2 things different
    1) some indication on the main guide screen that this is a “self” turn in quest
    2) when i click on the line of the quide that opens the quest log, the frame opened should contain the “complete quest” button
     
    Also its very cool that your captcha are something I can actually read!!

  • img
    Mar 1, 2011 @ 7:17 am

    I would suggest deleting allI would suggest deleting all folders that deal with WoWPro addon, including those in the WTF folder.  Then download directly from here http://github.com/downloads/Jiyambi/WoW-Pro-Guides/WoWPro%20v2.1.4.zip

  • img
    Methods
    Feb 28, 2011 @ 23:42 pm

    AddonVersion 2.1.4It said i had the trial and to download the full one so i go here and download it and put it where its supposed to go. Yet it still says i have the trial. Ive tried deleting it and redoing it and no luck. Almost all of my guides are just 0-1 steps.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

Categories

Archives