From 219e7602c1a3ecefe503b9f236e9c72795f4defb Mon Sep 17 00:00:00 2001 From: Zarillion Date: Thu, 6 Jun 2024 23:24:57 +0000 Subject: [PATCH] Comment-out incomplete TWW pieces --- .../HandyNotes_TheWarWithin.toc | 2 +- plugins/11_TheWarWithin/README.md | 79 ++++++ plugins/11_TheWarWithin/common.lua | 53 ++++ plugins/11_TheWarWithin/zones/hallowfall.lua | 110 ++++----- .../11_TheWarWithin/zones/isle_of_dorn.lua | 104 ++++---- .../11_TheWarWithin/zones/ringing_deeps.lua | 232 +++++++++--------- scripts/plugins.yml | 2 +- 7 files changed, 357 insertions(+), 225 deletions(-) create mode 100644 plugins/11_TheWarWithin/README.md diff --git a/plugins/11_TheWarWithin/HandyNotes_TheWarWithin.toc b/plugins/11_TheWarWithin/HandyNotes_TheWarWithin.toc index 290d607f5..0ea86ded0 100644 --- a/plugins/11_TheWarWithin/HandyNotes_TheWarWithin.toc +++ b/plugins/11_TheWarWithin/HandyNotes_TheWarWithin.toc @@ -1,6 +1,6 @@ ## Interface: 110000 ## Title: HandyNotes: The War Within -## Version: 1 +## Version: 0 ## Notes: The War Within Notes ## OptionalDeps: Ace3 ## RequiredDeps: HandyNotes diff --git a/plugins/11_TheWarWithin/README.md b/plugins/11_TheWarWithin/README.md new file mode 100644 index 000000000..85c241c07 --- /dev/null +++ b/plugins/11_TheWarWithin/README.md @@ -0,0 +1,79 @@ +**A [HandyNotes](https://www.curseforge.com/wow/addons/handynotes) plugin for The War Within expansion. It will add the locations and rewards for rare mobs, battle pets, treasures and other miscellaneous points of interest to the map.** + +## Global Features + +### Rare Mobs + +Rare mobs are listed as skulls on your map. If the skull is blue colored, that means you still need a collectible reward from that rare. If the rare has multiple spawn points, shares a spawn with common mobs or has a path, hovering over the skull will indicate all the points of interest or paths. Left-clicking on the skull will stick the points of interested on the map and minimap as you travel. + +### Treasures & Collectibles + +Locations and solutions for treasures are displayed on the map, along with the achievement they are associated with and any rewards they contain. Each treasure icon will disappear once it has been looted. The locations of mounts, pets and other collectibles found in the open world are also noted. + +### Battle Pets and Trainers + +The locations of all pet trainers and creature battles are marked on the map. Any achievements associated with defeating that creature or trainer will appear in the tooltip. + +### Waypoints + +Right-clicking a node to bring up its context menu. From this menu you can: + +* Create a Blizzard or TomTom waypoint +* Hide this node or restore all hidden nodes + +### Quick Toggle Menu + +In addition to the plugin settings menu found under *Interface > Addons > HandyNotes*, a quick toggle menu will appear on any map that contains nodes added by this plugin. This allows you to quickly toggle, resize or change the opacity of nodes displayed on the current map. + +### Options + +* Change icon sizes and alpha based on type (rares, treasures, battle pets, etc) +* Customize the size and color of POIs and paths. +* Enable or disable groups of icons +* Enlarge icons when the world map is maximized +* Show only rares that you still need rewards from +* Show already completed nodes + +## Expansion Features + +This plugin adds information to the map for the following zones: + +* Patch 11.0.0 - The Isle of Dorn, The Ringing Deeps, Hallowfall, Azj-Kahet + +In addition to rares, treasures and pet battles, this plugin also adds the following expansion or zone-specific items. + +### Khaz Algar + +* TODO + +### The Isle of Dorn + +* TODO + +### The Ringing Deeps + +* TODO + +### Hallowfall + +* TODO + +### Azj-Kahet + +* TODO + +## Localization + +This addon has been translated to the following languages: + +* TODO + +If you would like to translate the addon to another language, please open a [ticket](https://github.com/zarillion/handynotes-plugins/issues) or submit a [pull request](https://github.com/zarillion/handynotes-plugins/pulls) on GitHub. + +## Issues + +Did we miss something? Let us know in the comments if: + +* Something is out of place on the map. +* A reward, path or spawn point is missing from a rare. +* Icons are not removed from the map when expected. diff --git a/plugins/11_TheWarWithin/common.lua b/plugins/11_TheWarWithin/common.lua index 5df45bcf2..bd96166de 100644 --- a/plugins/11_TheWarWithin/common.lua +++ b/plugins/11_TheWarWithin/common.lua @@ -17,6 +17,11 @@ ns.expansion = 11 ----------------------------------- GROUPS ------------------------------------ ------------------------------------------------------------------------------- +ns.groups.DRAGONRACE = Group('dragonrace', 1100022, { + defaults = ns.GROUP_HIDDEN, + type = ns.group_types.EXPANSION +}) + ns.groups.FLIGHT_GLYPH = Group('flight_glyph', 4728198, { defaults = ns.GROUP_HIDDEN, type = ns.group_types.EXPANSION @@ -36,6 +41,54 @@ ns.groups.SIGN = Group('sign', 135946, { achievement = 16423 }) +------------------------------------------------------------------------------- +--------------------------------- DRAGONRACES --------------------------------- +------------------------------------------------------------------------------- + +local Dragonrace = Class('DragonRace', Collectible, + {icon = 1100022, group = ns.groups.DRAGONRACE}) + +function Dragonrace.getters:sublabel() + if self.normal then + local ntime = C_CurrencyInfo.GetCurrencyInfo(self.normal[1]).quantity + if self.advanced and self.reverse then + local atime = C_CurrencyInfo.GetCurrencyInfo(self.advanced[1]) + .quantity + local rtime = C_CurrencyInfo.GetCurrencyInfo(self.reverse[1]) + .quantity + return L['dr_best']:format(ntime / 1000, atime / 1000, rtime / 1000) + end + return L['dr_best_dash']:format(ntime / 1000) + end +end + +function Dragonrace.getters:note() + if self.normal then + local silver = ns.color.Silver + local gold = ns.color.Gold + + -- LuaFormatter off + if self.advanced and self.reverse then + return L['dr_note']:format( + silver(self.normal[2]), + gold(self.normal[3]), + silver(self.advanced[2]), + gold(self.advanced[3]), + silver(self.reverse[2]), + gold(self.reverse[3]) + ) .. L['dr_bronze'] + end + + return L['dr_note_dash']:format( + silver(self.normal[2]), + gold(self.normal[3]) + ) .. L['dr_bronze'] + -- LuaFormatter on + end +end + +ns.node.DragonRace = Dragonrace + ------------------------------------------------------------------------------- -------------------------------- FLIGHT GLYPHS -------------------------------- ------------------------------------------------------------------------------- diff --git a/plugins/11_TheWarWithin/zones/hallowfall.lua b/plugins/11_TheWarWithin/zones/hallowfall.lua index fb5a26e1e..8131c00e6 100644 --- a/plugins/11_TheWarWithin/zones/hallowfall.lua +++ b/plugins/11_TheWarWithin/zones/hallowfall.lua @@ -20,12 +20,12 @@ local map = Map({id = 2215, settings = true}) --------------------------------- DRAGONRACES --------------------------------- ------------------------------------------------------------------------------- -map.nodes[73003900] = DragonRace() -- Dunelle's Detour -map.nodes[40006600] = DragonRace() -- Light's Redoubt Descent -map.nodes[38006300] = DragonRace() -- Mereldar Meander -map.nodes[58002600] = DragonRace() -- Stillstone Slalom -map.nodes[60006800] = DragonRace() -- Ternir's Traversal -map.nodes[55001800] = DragonRace() -- Velhan's Venture +-- map.nodes[73003900] = DragonRace() -- Dunelle's Detour +-- map.nodes[40006600] = DragonRace() -- Light's Redoubt Descent +-- map.nodes[38006300] = DragonRace() -- Mereldar Meander +-- map.nodes[58002600] = DragonRace() -- Stillstone Slalom +-- map.nodes[60006800] = DragonRace() -- Ternir's Traversal +-- map.nodes[55001800] = DragonRace() -- Velhan's Venture ------------------------------------------------------------------------------- ------------------------ ACHIEVEMENT: MERELDAR MENANCE ------------------------ @@ -37,52 +37,52 @@ local MereldarMenance = Class('MereldarMenance', Collectible, { note = L['mereldar_menance_note'] }) -map.nodes[00000000] = MereldarMenance({ - label = '{npc:223508}', - rewards = {Achievement({id = 40151, criteria = 1})} -}) -- Orphange Window - -map.nodes[10001000] = MereldarMenance({ - label = '{npc:223513}', - rewards = {Achievement({id = 40151, criteria = 2})} -}) -- Notice Board - -map.nodes[20002000] = MereldarMenance({ - label = '{npc:223515}', - rewards = {Achievement({id = 40151, criteria = 3})} -}) -- Food Stall - -map.nodes[30003000] = MereldarMenance({ - label = '{npc:223516}', - rewards = {Achievement({id = 40151, criteria = 4})} -}) -- Fountain - -map.nodes[40004000] = MereldarMenance({ - label = '{npc:223517}', - rewards = {Achievement({id = 40151, criteria = 5})} -}) -- Spice Stall - -map.nodes[50005000] = MereldarMenance({ - label = '{npc:223522}', - rewards = {Achievement({id = 40151, criteria = 6})} -}) -- Light and Flame - -map.nodes[60006000] = MereldarMenance({ - label = '{npc:223527}', - rewards = {Achievement({id = 40151, criteria = 7})} -}) -- Lamplighter Doorway - -map.nodes[70007000] = MereldarMenance({ - label = '{npc:223538}', - rewards = {Achievement({id = 40151, criteria = 8})} -}) -- Barracks Doorway - -map.nodes[80008000] = MereldarMenance({ - label = '{npc:223557}', - rewards = {Achievement({id = 40151, criteria = 9})} -}) -- Holy Oil - -map.nodes[90009000] = MereldarMenance({ - label = '{npc:223559}', - rewards = {Achievement({id = 40151, criteria = 10})} -}) -- Airship Drafting Board +-- map.nodes[00000000] = MereldarMenance({ +-- label = '{npc:223508}', +-- rewards = {Achievement({id = 40151, criteria = 1})} +-- }) -- Orphange Window + +-- map.nodes[10001000] = MereldarMenance({ +-- label = '{npc:223513}', +-- rewards = {Achievement({id = 40151, criteria = 2})} +-- }) -- Notice Board + +-- map.nodes[20002000] = MereldarMenance({ +-- label = '{npc:223515}', +-- rewards = {Achievement({id = 40151, criteria = 3})} +-- }) -- Food Stall + +-- map.nodes[30003000] = MereldarMenance({ +-- label = '{npc:223516}', +-- rewards = {Achievement({id = 40151, criteria = 4})} +-- }) -- Fountain + +-- map.nodes[40004000] = MereldarMenance({ +-- label = '{npc:223517}', +-- rewards = {Achievement({id = 40151, criteria = 5})} +-- }) -- Spice Stall + +-- map.nodes[50005000] = MereldarMenance({ +-- label = '{npc:223522}', +-- rewards = {Achievement({id = 40151, criteria = 6})} +-- }) -- Light and Flame + +-- map.nodes[60006000] = MereldarMenance({ +-- label = '{npc:223527}', +-- rewards = {Achievement({id = 40151, criteria = 7})} +-- }) -- Lamplighter Doorway + +-- map.nodes[70007000] = MereldarMenance({ +-- label = '{npc:223538}', +-- rewards = {Achievement({id = 40151, criteria = 8})} +-- }) -- Barracks Doorway + +-- map.nodes[80008000] = MereldarMenance({ +-- label = '{npc:223557}', +-- rewards = {Achievement({id = 40151, criteria = 9})} +-- }) -- Holy Oil + +-- map.nodes[90009000] = MereldarMenance({ +-- label = '{npc:223559}', +-- rewards = {Achievement({id = 40151, criteria = 10})} +-- }) -- Airship Drafting Board diff --git a/plugins/11_TheWarWithin/zones/isle_of_dorn.lua b/plugins/11_TheWarWithin/zones/isle_of_dorn.lua index 734b79ca4..ef078de69 100644 --- a/plugins/11_TheWarWithin/zones/isle_of_dorn.lua +++ b/plugins/11_TheWarWithin/zones/isle_of_dorn.lua @@ -136,79 +136,79 @@ map.nodes[26105400] = Rare({ ---------------------------------- TREASURES ---------------------------------- ------------------------------------------------------------------------------- -map.nodes[38007960] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Dalaran Sewer Turtle +-- map.nodes[38007960] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Dalaran Sewer Turtle -map.nodes[61901680] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Earthen Coffer +-- map.nodes[61901680] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Earthen Coffer -map.nodes[77503690] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Elemental Geode +-- map.nodes[77503690] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Elemental Geode -map.nodes[63804310] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Forgotten Axe +-- map.nodes[63804310] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Forgotten Axe -map.nodes[56306420] = Treasure({ - rewards = {Achievement({id = 40434, criteria = 11})} -}) -- Infused Cinderbrew +-- map.nodes[56306420] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = 11})} +-- }) -- Infused Cinderbrew -map.nodes[81402060] = Treasure({ - rewards = {Achievement({id = 40434, criteria = 9})} -}) -- Jade Pearl +-- map.nodes[81402060] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = 9})} +-- }) -- Jade Pearl -map.nodes[82204570] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Keeper's Stash +-- map.nodes[82204570] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Keeper's Stash -map.nodes[37706300] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Lionel +-- map.nodes[37706300] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Lionel -map.nodes[60302080] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Lost Mosswool +-- map.nodes[60302080] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Lost Mosswool -map.nodes[54806980] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- U'llwort The Self-Exiled +-- map.nodes[54806980] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- U'llwort The Self-Exiled -map.nodes[53501440] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Weary Water Elemental +-- map.nodes[53501440] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Weary Water Elemental -map.nodes[59701950] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Web-wrapped Axe +-- map.nodes[59701950] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Web-wrapped Axe -map.nodes[82502480] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Titan Console +-- map.nodes[82502480] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Titan Console -map.nodes[57501540] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Watcher of the North +-- map.nodes[57501540] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Watcher of the North -map.nodes[39508720] = Treasure({ - rewards = {Achievement({id = 40434, criteria = nil})} -}) -- Watcher of the South +-- map.nodes[39508720] = Treasure({ +-- rewards = {Achievement({id = 40434, criteria = nil})} +-- }) -- Watcher of the South ------------------------------------------------------------------------------- -------------------------------- DRAGON GLYPHS -------------------------------- ------------------------------------------------------------------------------- -map.nodes[79601800] = FlightGlyph({rewards = Achievement({id = 40152})}) -- Three Shields +-- map.nodes[79601800] = FlightGlyph({rewards = Achievement({id = 40152})}) -- Three Shields ------------------------------------------------------------------------------- --------------------------------- DRAGONRACES --------------------------------- ------------------------------------------------------------------------------- -map.nodes[53006800] = DragonRace() -- Basin Bypass, Boskroot Basin -map.nodes[46003300] = DragonRace() -- Dornogal Drift, Dornogal -map.nodes[28008100] = DragonRace() -- Orecreg's Doglegs, Orecreg -map.nodes[35004300] = DragonRace() -- Storm's Watch Survey, Storm's Watch -map.nodes[59002100] = DragonRace() -- Thunderhead Trail, Thunderhead Peak -map.nodes[63004600] = DragonRace() -- The Wold Ways, south of Mourning Rise +-- map.nodes[53006800] = DragonRace() -- Basin Bypass, Boskroot Basin +-- map.nodes[46003300] = DragonRace() -- Dornogal Drift, Dornogal +-- map.nodes[28008100] = DragonRace() -- Orecreg's Doglegs, Orecreg +-- map.nodes[35004300] = DragonRace() -- Storm's Watch Survey, Storm's Watch +-- map.nodes[59002100] = DragonRace() -- Thunderhead Trail, Thunderhead Peak +-- map.nodes[63004600] = DragonRace() -- The Wold Ways, south of Mourning Rise diff --git a/plugins/11_TheWarWithin/zones/ringing_deeps.lua b/plugins/11_TheWarWithin/zones/ringing_deeps.lua index 9d82256b3..9c89ec3fe 100644 --- a/plugins/11_TheWarWithin/zones/ringing_deeps.lua +++ b/plugins/11_TheWarWithin/zones/ringing_deeps.lua @@ -22,144 +22,144 @@ local map = Map({id = 2214, settings = true}) ------------------------------------ RARES ------------------------------------ ------------------------------------------------------------------------------- -map.nodes[46007600] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Aquellion - -map.nodes[45003000] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Basilisk Matriarch - -map.nodes[59003200] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Candleflayer Captain - -map.nodes[55002500] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Charmonger - -map.nodes[50004200] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Coalesced Monstrosity - -map.nodes[43005000] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Cragmund - -map.nodes[58006500] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Deathbound Husk - -map.nodes[61005700] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Disturbed Earthgorger - -map.nodes[57005700] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Hungerer of the Deeps - -map.nodes[38004800] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Kelpmire - -map.nodes[33003700] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- King Splash - -map.nodes[50005900] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Raging Skardyn - -map.nodes[60005300] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Spore-infused Shalewing - -map.nodes[36001100] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Terror of the Forge - -map.nodes[66004500] = Rare({ - id = nil, - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Trungal +-- map.nodes[46007600] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Aquellion + +-- map.nodes[45003000] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Basilisk Matriarch + +-- map.nodes[59003200] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Candleflayer Captain + +-- map.nodes[55002500] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Charmonger + +-- map.nodes[50004200] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Coalesced Monstrosity + +-- map.nodes[43005000] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Cragmund + +-- map.nodes[58006500] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Deathbound Husk + +-- map.nodes[61005700] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Disturbed Earthgorger + +-- map.nodes[57005700] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Hungerer of the Deeps + +-- map.nodes[38004800] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Kelpmire + +-- map.nodes[33003700] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- King Splash + +-- map.nodes[50005900] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Raging Skardyn + +-- map.nodes[60005300] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Spore-infused Shalewing + +-- map.nodes[36001100] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Terror of the Forge + +-- map.nodes[66004500] = Rare({ +-- id = nil, +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Trungal ------------------------------------------------------------------------------- ---------------------------------- TREASURES ---------------------------------- ------------------------------------------------------------------------------- -map.nodes[40005100] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Blocked Intake +-- map.nodes[40005100] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Blocked Intake -map.nodes[57006500] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Cursed Pickaxe +-- map.nodes[57006500] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Cursed Pickaxe -map.nodes[37001800] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Discarded Toolbox +-- map.nodes[37001800] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Discarded Toolbox -map.nodes[41003300] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Dusty Prospector's Chest +-- map.nodes[41003300] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Dusty Prospector's Chest -map.nodes[52006900] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Kaja'Cola Machine +-- map.nodes[52006900] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Kaja'Cola Machine -map.nodes[43005500] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Forgotten Trreasure +-- map.nodes[43005500] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Forgotten Trreasure -map.nodes[48001500] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Munderut's Forgotten Stash +-- map.nodes[48001500] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Munderut's Forgotten Stash -map.nodes[51003200] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Scary Dark Chest +-- map.nodes[51003200] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Scary Dark Chest -map.nodes[60003500] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Waterlogged Refuse +-- map.nodes[60003500] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Waterlogged Refuse -map.nodes[63004100] = Treasure({ - rewards = {Achievement({id = nil, criteria = nil})} -}) -- Webbed Knapsack +-- map.nodes[63004100] = Treasure({ +-- rewards = {Achievement({id = nil, criteria = nil})} +-- }) -- Webbed Knapsack ------------------------------------------------------------------------------- --------------------------------- DRAGONRACES --------------------------------- ------------------------------------------------------------------------------- -map.nodes[43004800] = DragonRace() -- Cataract River Cruise -map.nodes[63003800] = DragonRace() -- Chittering Concourse -map.nodes[32001000] = DragonRace() -- Earthenworks Weave -map.nodes[58008300] = DragonRace() -- Opportunity Point Amble -map.nodes[32002400] = DragonRace() -- Ringing Deeps Ramble -map.nodes[60007500] = DragonRace() -- Taelloch Twist +-- map.nodes[43004800] = DragonRace() -- Cataract River Cruise +-- map.nodes[63003800] = DragonRace() -- Chittering Concourse +-- map.nodes[32001000] = DragonRace() -- Earthenworks Weave +-- map.nodes[58008300] = DragonRace() -- Opportunity Point Amble +-- map.nodes[32002400] = DragonRace() -- Ringing Deeps Ramble +-- map.nodes[60007500] = DragonRace() -- Taelloch Twist ------------------------------------------------------------------------------- ------------------------------------ SIGNS ------------------------------------ ------------------------------------------------------------------------------- -local Sign = Class('sign', Collectible, {group = ns.groups.SIGN}) +-- local Sign = Class('sign', Collectible, {group = ns.groups.SIGN}) -map.nodes[30001900] = Sign() -- A skull on a sign -map.nodes[58005900] = Sign() -- Kobold Warning Sign -map.nodes[44007800] = Sign() -- Submerged Sign -map.nodes[66004300] = Sign() -- Warning: Collapsed Tunnel -map.nodes[43005900] = Sign() -- Wax-Drenched Sign +-- map.nodes[30001900] = Sign() -- A skull on a sign +-- map.nodes[58005900] = Sign() -- Kobold Warning Sign +-- map.nodes[44007800] = Sign() -- Submerged Sign +-- map.nodes[66004300] = Sign() -- Warning: Collapsed Tunnel +-- map.nodes[43005900] = Sign() -- Wax-Drenched Sign diff --git a/scripts/plugins.yml b/scripts/plugins.yml index fbe711801..b73598df4 100644 --- a/scripts/plugins.yml +++ b/scripts/plugins.yml @@ -64,7 +64,7 @@ plugins: name: HandyNotes_TheWarWithin curse: 932955 wowi: null - enabled: false + enabled: true - dir: 12_Midnight name: HandyNotes_Midnight