Skip to content

Knowledge Sources

Co2Noss edited this page Aug 26, 2026 · 1 revision

Knowledge Sources

Knowledge.lua carries every source for Midnight and The War Within, keyed by profession skill line variant ID. The quest IDs were checked against WeeklyKnowledge.

When a patch adds sources, add them to that file or register them at runtime:

Lodestar:RegisterKnowledge(2918, {
  objectives = {
    { kind = "TREATISE", label = "Treatise", quests = { 95137 }, points = 1 },
    { kind = "WEEKLY", label = "Trainer quest", quests = { 93697, 93698, 93699 }, points = 3, limit = 1 },
    { kind = "TREASURE", label = "Embroidered Memento", quests = { 93542 }, points = 2 },
  },
})

kind is TREATISE, WEEKLY, or GATHERING for sources that reset weekly, and TREASURE for one-time pickups. limit caps how many quests in the set can count. Anything with no data says so rather than reporting itself complete.

Treasure coordinates (map, x, y) come from WeeklyKnowledge Unique.lua when they exist. Lodestar does not invent them.

See Professions for how those sources show up to the player.

Clone this wiki locally