HandyNotes Plugin Documentation

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

View the Project on GitHub zarillion/handynotes-plugins

Reward Classes

All rewards are accessible via ns.reward


Section

Adds a separator between the Rewards.

Section("Title of the Section")

Spacer

The Spacer Reward just adds a blank line.

Example

Spacer()

Achievement

Example

Achievement({id = 17736, criteria = {qty = true, id = 1}}) -- The Gift of Cheese

Properties


Currency

Is Used to display a Currency in the Node rewards

Example

Currency({id = 2245}) -- Flightstones

Properties


Follower

Example

Follower({id = 467, icon = 608952}) -- Fen Tao

Properties


Item

The Item reward is used as the base class for other item related rewards

Example

Item({item = 188793, quest = 65282, note = '150'}) -- Improved Cypher Analysis Tool

Properties


Heirloom

Uses Item as its base class, all properties from Item can be used here too.

Example

Heirloom({item = 122250}) -- Tattered Dreadmist Mask

Properties


Mount

Uses Item as its base class, all properties from Item can be used here too.

Example

Mount({item = 44168, id = 265}) -- Time-Lost Proto-Drake

Properties


Pet

Uses Item as its base class, all properties from Item can be used here too.

Example

Pet({id = 635}) -- Adder

Properties


Quest

Example

Quest({id = 60}) -- Kobold Candles

Properties


Recipe

Uses Item as its base class, all properties from Item can be used here too.

Example

Recipe({item = 198104, profession = 185}) -- Recipe: Blubbery Muffin

Properties


Spell

Uses Item as its base class, all properties from Item can be used here too.

Is Used to track Items that reward a Spell

Example

Spell({item = item_id, spell = spell_id})

Properties


Title

Example

Title({id = title_id, pattern = '{title} {player}'})

Properties


Toy

Uses Item as its base class, all properties from Item can be used here too.

Example

Toy({item = item_id})

Properties


Transmog

Uses Item as its base class, all properties from Item can be used here too.

Example

Transmog({item = item_id, slot = L[slot_locale]})

Properties


Reputation

Example:

Reputation({id = 2590, gain = 150, quest = 84036, note = 'Example Note'})

Properties