All the item tooltips in the lua file look to be correct. It looks to me like a parsing problem when they are being converted to view on the website, based on certain assumptions made about the tooltips (e.g., that an enchant that begins with 'Mana' must have a +xxx after it).
Here's a link to a screenshot of the tooltips for the mana regeneration enchants:
http://img272.imageshack.us/my.php?i...enitems0lg.jpg
Here's how they look in the wownetexport.lua file:
["Wrist"] = {
["Item"] = "18263:2565:0:1454849280",
["Color"] = "ffa335ee",
["Tooltip"] = {
[1] = "Flarecore Wraps",
[2] = "Soulbound",
[3] = "Wrist Cloth",
[4] = "43 Armor",
[5] = "+8 Intellect",
[6] = "+7 Fire Resistance",
[7] = "Mana Regen 4 per 5 sec.",
[8] = "Durability 35 / 35",
[9] = "Requires Level 60",
[10] = "Equip: Restores 9 mana every 5 sec.",
[11] = "|cff00ff00<Made by Kumojin>|r",
},
["Name"] = "Flarecore Wraps",
["Texture"] = "Interface\\Icons\\INV_Bracer_09",
},
["Head"] = {
["Item"] = "16921:2590:0:0",
["Color"] = "ffa335ee",
["Tooltip"] = {
[1] = "Halo of Transcendence",
[2] = "Soulbound",
[3] = "Head Cloth",
[4] = "94 Armor",
[5] = "+17 Stamina",
[6] = "+27 Intellect",
[7] = "+22 Spirit",
[8] = "+10 Fire Resistance",
[9] = "+10 Frost Resistance",
[10] = "Mana Regen +4/Stamina +10/Healing Spells +24",
[11] = "Durability 59 / 60",
[12] = "Classes: Priest",
[13] = "Requires Level 60",
[14] = "Equip: Increases healing done by spells and effects by up to 48.",
[15] = " <br>",
[16] = "Vestments of Transcendence (1/8)",
[17] = " Belt of Transcendence",
[18] = " Bindings of Transcendence",
[19] = " Boots of Transcendence",
[20] = " Halo of Transcendence",
},
["Name"] = "Halo of Transcendence",
["Texture"] = "Interface\\Icons\\INV_Helmet_24",
},
["Legs"] = {
["Item"] = "16814:2590:0:0",
["Color"] = "ffa335ee",
["Tooltip"] = {
[1] = "Pants of Prophecy",
[2] = "Soulbound",
[3] = "Legs Cloth",
[4] = "89 Armor",
[5] = "+18 Stamina",
[6] = "+24 Intellect",
[7] = "+20 Spirit",
[8] = "+10 Shadow Resistance",
[9] = "Mana Regen +4/Stamina +10/Healing Spells +24",
[10] = "Durability 74 / 75",
[11] = "Classes: Priest",
[12] = "Requires Level 60",
[13] = "Equip: Restores 6 mana every 5 sec.",
[14] = "Equip: Increases healing done by spells and effects by up to 22.",
[15] = " <br>",
[16] = "Vestments of Prophecy (3/8)",
[17] = " Boots of Prophecy",
[18] = " Circlet of Prophecy",
[19] = " Girdle of Prophecy",
[20] = " Gloves of Prophecy",
},
["Name"] = "Pants of Prophecy",
["Texture"] = "Interface\\Icons\\INV_Pants_08",
},
So it seems that item descriptions are limited to 20 lines, though some set items should have more because of the set-list and set-bonuses at the end.
One of the bad quests from the log:
http://img23.imageshack.us/my.php?image=badquest7ik.jpg
And from the lua file:
[6] = {
["Objectives"] = "Slay Grol the Destroyer, Lady Sevine, and Archmage Allistarj. From their corpses take the Amulet of Grol, the Amulet of Sevine, and the Amulet of Allistarj.\
\
Remember to USE your Enchanted Azsharite Fel Weaponry to weaken the triad. They cannot be killed otherwise - but use them wisely...
\
",
["Title"] = "Uniting the Shattered Amulet",
["QuestType"] = "UNKNOWN",
["QuestFaction"] = "A",
["Level"] = 60,
["Header"] = "Blasted Lands",
["Tag"] = "Elite",
},
It looks like the quests that don't show up on the site are the ones where the objectives end with the closing-quote on its own line.
["Objectives"] = "Find Fras Siabi's smoke shop in Stratholme and recover a box of Siabi's Premium Tobacco. Return to Smokey LaRue when the job is done.
\
",
The other quest that doesn't show up is one that actually appears twice in the lua file.
[9] = {
["QuestFaction"] = "A",
["Rewards"] = {
["20724:Corrupted Blackwood Staff"] = "R",
},
["QuestType"] = "UNKNOWN",
["Header"] = "Silithus",
["Objectives"] = "Commander Mar'alith at Cenarion (cut)
["Level"] = 62,
["Title"] = "Into The Maw of Madness",
["Tag"] = "Elite",
},
[16] = {
["QuestFaction"] = "A",
["Rewards"] = {
["20724:Corrupted Blackwood Staff"] = "R",
},
["QuestType"] = "UNKNOWN",
["Header"] = "Silithus",
["Title"] = "Into The Maw of Madness",
["Level"] = 62,
["Tag"] = "Elite",
["Objectives"] = "Commander Mar'alith at Cenarion (cut)
},
And lastly, the Onyxia Scale Cloak:
[3] = {
["Quantity"] = 1,
["Name"] = "Onyxia Scale Cloak",
["Color"] = "ff0070dd",
["Tooltip"] = {
[1] = "Onyxia Scale Cloak",
[2] = "Soulbound",
[3] = "Back",
[4] = "43 Armor",
[5] = "+7 Stamina",
[6] = "+16 Fire Resistance",
[7] = "+7 Fire Resistance",
[8] = "Requires Level 55",
[9] = "Equip: Protects the wearer from being fully engulfed by Shadow Flame.",
[10] = "|cff00ff00<Made by Amirah>|r",
},
["Item"] = "15138:2463:0:1249272960",
["Texture"] = "Interface\\Icons\\INV_Misc_Cape_05",
},