HandyNotes Plugin Documentation

Documentation for the core framework used in Zarillion's HandyNotes expansion plugins.

View the Project on GitHub zarillion/handynotes-plugins

Node Classes


Node

The base class for all nodes.

ns.node.Node({
    label = 'Example Node',
    icon = 'peg_yw',
    note = 'This is a Note on the Example Node.'
})

Default Properites

ns.node.Node has the following properties by default:

Optional Tooltip Properties

ns.node.Node supports the following optional properties that affect a node’s tootlip:

Optional Visibility Properties

ns.node.Node supports the following optional properties that affect a node’s visibility:

Optional Interaction Properties

ns.node.Node supports the following optional properties that affect a node’s interaction:


Collectible

map.nodes[58085381] = ns.node.Collectible({
    id = 204693,
    icon = 'peg_bl',
    scale = 1.3
    note = L['ponzo_note'],
    rewards = {
        DC.SetNote(DC.WindingSlitherdrake.HairyBrow, '55x'),
        DC.SetNote(DC.WindingSlitherdrake.ClusterChinHorn, '55x'),
        DC.SetNote(DC.WindingSlitherdrake.CurledNose, '55x'),
        Pet({item = 205120, id = 3537, note = '85x'}), -- Thimblerig
        Mount({item = 205209, id = 1736, note = '170x'}) -- Boulder Hauler
    }
}) -- Ponzo <Barterer Extraordinaire>

Optional Properties

ns.node.Collectible supports the following properties:

Please note that the label for ns.node.Collectible can also come from the criteria for the first listed achievement in rewards.


Intro

local MawIntro = Class('MawIntro', ns.node.Intro, {
    quest = 62907, -- Eye of the Jailor activation
    label = L['return_to_the_maw'],
    note = L['maw_intro_note']
})

map.intro = MawIntro({
    rewards = {
        Quest({
            id = {
                62882, -- Setting the Ground Rules
                60287 -- Rule 1: Have an Escape Plan
            }
        })
    }
})

map.nodes[80306280] = map.intro

Default Properites

ns.node.Intro has the following properties set by default:

Optional Properties

ns.node.Intro supports the following properties:


Item

map.nodes[78175317] = ns.node.Item({
    id = 189418,
    quest = 65327,
    sublabel = '{spell:366368}',
    icon = 132599,
    group = ns.groups.PROTOFORM_SCHEMATICS
    note = L['schematic_ambystan_darter_note']
}) -- Ambystan Darter

Required Properties

ns.node.Item requires the following properties:


NPC

map.nodes[37164467] = ns.node.NPC({
    id = 183962,
    icon = 4254892,
    requires = {
        ns.requirement.GarrisonTalent(1902),
        ns.requirement.Quest(65219)
    },
    note = L['olea_manu'],
    rewards = {
        Item({item = 187804, note = '25'}), -- Recipe: Empty Kettle of Stone Soup
        Item({item = 187824, note = '25'}), -- Formula: Magically Regulated Automa Core
        Item({item = 188793, quest = 65282, note = '150'}), -- Improved Cypher Analysis Tool
        Item({item = 189986, quest = 65514, covenant = NIGHTFAE, note = '500'}), -- Armadillo Soul
        Item({item = 189980, quest = 65510, covenant = NIGHTFAE, note = '1000'}), -- Brutosaur Soul
        Toy({item = 190333, note = '100'}), -- Jiro Circle of Song
        Pet({item = 191039, id = 3247, note = '500'}), -- Pocopoc Traveler
        Item({item = 187781, note = '700'}) -- Olea Cache
    }
}) -- Olea Manu

Required Properties

ns.node.NPC requires the following properties:


PetBattle

map.nodes[13095369] = ns.node.PetBattle({
    id = 200689,
    rewards = {Achievement({id = 17541, criteria = 58574})} -- Global Swarming
}) -- Wildfire

Default Properites

ns.node.PetBattle has the following properties set by default:

Required Properties

ns.node.PetBattle requires the following properties:


Quest

map.nodes[53486145] = Quest({
    quest = 55743,
    questDeps = 56117,
    daily = true,
    minimap = false,
    scale = 1.8,
    rewards = {
        Achievement({id = 13708, criteria = {45772, 45775, 45776, 45777, 45778}}), -- Most Minis Wins
        Item({item = 169848, weekly = 57134}) -- Azeroth Mini Pack: Bondo's Yard
    }
})

Default Properites

ns.node.Quest has the following properties set by default:

Optional Properties

ns.node.Quest supports the following properties:


Rare

map.nodes[43947530] = ns.node.Rare({
    id = 183516,
    quest = 65580,
    vignette = 4933,
    note = L['the_engulfer_note'],
    rlabel = ns.status.LightBlue('+10 ' .. L['rep']),
    rewards = {
        Achievement({id = 15391, criteria = 53050}), -- Adventurer of Zereth Mortis
        Transmog({item = 189913, slot = L['cloth']}), -- Engulfer's Tightening Cinch
        Transmog({item = 189921, slot = L['leather']}), -- Devourer's Insatiable Grips
        Transmog({item = 190006, slot = L['1h_sword']}) -- Anima-Siphoning Sword
    }
}) -- The Engulfer

Default Properites

ns.node.Rare has the following properties set by default:

Required Properties

ns.node.Rare requires the following properties:

It is highly recommended that you add the quest property to rares and use the hidden questID used by Blizzard to track if a rare has been killed for the day.


Treasure

map.nodes[65804182] = ns.node.Treasure({
    quest = 70600,
    note = L['golden_dragon_goblet_note'],
    requires = {
        ns.requirement.Quest(72709), -- Funding a Treasure Hunt
        ns.requirement.Quest(70409, '{item:198854}') -- Archeologist Artifact Notes
    },
    rewards = {
        Achievement({id = 16297, criteria = 54698}), -- Treasures of The Waking Shores
        Toy({item = 202019}) -- Golden Dragon Goblet
    },
    pois = {POI({77992943})}
}) -- Golden Dragon Goblet

Default Properites

ns.node.Treasure has the following properties set by default:

It is highly recommended that you add the quest property to rares and use the hidden questID used by Blizzard to track if a treasure has been collected.

Please note that by default the label for ns.node.Treasure comes from the criteria for the first listed achievement in rewards.