Questie

Questie

116M Downloads

Mouseover on escort mob raise error.

rasberryrabbit opened this issue ยท 5 comments

commented

mouseover on Escorting quest mob raise error.

wowscrnshot_050916_132416

I make some modification on questienotes.lua line 265.

                                            if indx~=nil then
                                                local countstr = string.sub(desc, indx+2);
                                                local namestr = string.sub(desc, 1, indx-1);
                                            if(string.find(name, monster) and QuestieItems[namestr] and QuestieItems[namestr]['drop']) then -- Added Find to fix zapped giants (THIS IS NOT TESTED IF YOU FIND ERRORS REPORT!)
                                                for dropperr, id in pairs(QuestieItems[namestr]['drop']) do
                                                    if(name == dropperr or (string.find(name, dropperr) and name == dropperr) and not p) then-- Added Find to fix zapped giants (THIS IS NOT TESTED IF YOU FIND ERRORS REPORT!)
                                                        GameTooltip:AddLine(v['objectives']['QuestName'], 0.2, 1, 0.3)
                                                        GameTooltip:AddLine("   " .. namestr .. ": " .. countstr, 1, 1, 0.2)
                                                        p = true;
                                                        return;
                                                    end
                                                end
                                            end
                                            else
                                                GameTooltip:AddLine(v['objectives']['QuestName'], 0.2, 1, 0.3)
                                                p = true;
                                                return;
                                            end
commented

Can you attach your version of QuestieNotes.lua here in a zip file so I can take a look at an actual copy that fixes the issue?

commented

QuestieNotes_escortmob.zip

I change code for working on non-countable quest mob. There is may no ":" in quest description.

commented

I make another patch for finding mob & counter text.

questienote_mobcount.patch.txt

commented

I've already inserted the changes you made. It'll be in version 3.1 here shortly.

commented

Thank you :)