mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 15:46:59 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 04e04a4853 |
@@ -3,6 +3,18 @@
|
|||||||
All notable changes to MetaHunt will be documented in this file.
|
All notable changes to MetaHunt will be documented in this file.
|
||||||
|
|
||||||
|
|
||||||
|
## [1.5.2] - [Unreleased]
|
||||||
|
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **zTrack — Find Fish**: Added new spell Find Fish to the zTrack list of trackings.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **zCraft — Smelting**: Smeling was previously not appearing in zCraft because incorrectly hardcoded as "Mining", this is fixed.
|
||||||
|
|
||||||
|
|
||||||
## [1.5.1] - 2026-04-01
|
## [1.5.1] - 2026-04-01
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -78,7 +78,6 @@ Display the model of all beasts in the world. Always know what you are going to
|
|||||||
The Book is the main GUI of MetaHunt, it allows to display the data constantly collected about you and your pet, and browse the addon's data to find anything a Hunter needs.
|
The Book is the main GUI of MetaHunt, it allows to display the data constantly collected about you and your pet, and browse the addon's data to find anything a Hunter needs.
|
||||||
|
|
||||||
- Browse the MetaHunt datastores of NPCs (Beast, vendors, masters) and open the map to locate them like in pfQuest
|
- Browse the MetaHunt datastores of NPCs (Beast, vendors, masters) and open the map to locate them like in pfQuest
|
||||||
- Model viewer of all beasts in the game.
|
|
||||||
- Track all info about the pet abilities that you know and don't know yet
|
- Track all info about the pet abilities that you know and don't know yet
|
||||||
- Track all info about your stabled pets
|
- Track all info about your stabled pets
|
||||||
- Keep an history of all your pets after you abandon them or if they run away.
|
- Keep an history of all your pets after you abandon them or if they run away.
|
||||||
|
|||||||
@@ -87,6 +87,7 @@ ZHUNTER_TRACK_MINERALS = "Find Minerals"
|
|||||||
ZHUNTER_TRACK_HERBS = "Find Herbs"
|
ZHUNTER_TRACK_HERBS = "Find Herbs"
|
||||||
ZHUNTER_TRACK_TREASURE = "Find Treasure"
|
ZHUNTER_TRACK_TREASURE = "Find Treasure"
|
||||||
ZHUNTER_TRACK_TREES = "Find Trees"
|
ZHUNTER_TRACK_TREES = "Find Trees"
|
||||||
|
ZHUNTER_TRACK_FISH = "Find Fish"
|
||||||
|
|
||||||
ZHUNTER_TRAP_FREEZING = "Freezing Trap"
|
ZHUNTER_TRAP_FREEZING = "Freezing Trap"
|
||||||
ZHUNTER_TRAP_FROST = "Frost Trap"
|
ZHUNTER_TRAP_FROST = "Frost Trap"
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ local ZCRAFT_PROFESSIONS = {
|
|||||||
{ spellName = "Leatherworking", display = "Leatherworking" },
|
{ spellName = "Leatherworking", display = "Leatherworking" },
|
||||||
{ spellName = "Tailoring", display = "Tailoring" },
|
{ spellName = "Tailoring", display = "Tailoring" },
|
||||||
{ spellName = "Jewelcrafting", display = "Jewelcrafting" },
|
{ spellName = "Jewelcrafting", display = "Jewelcrafting" },
|
||||||
{ spellName = "Mining", display = "Smelting" },
|
{ spellName = "Smelting", display = "Smelting" },
|
||||||
{ spellName = "Cooking", display = "Cooking" },
|
{ spellName = "Cooking", display = "Cooking" },
|
||||||
{ spellName = "First Aid", display = "First Aid" },
|
{ spellName = "First Aid", display = "First Aid" },
|
||||||
{ spellName = "Herbalism", display = "Herbalism" },
|
{ spellName = "Herbalism", display = "Herbalism" },
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ end
|
|||||||
local root = zButtonTrack_GetRoot()
|
local root = zButtonTrack_GetRoot()
|
||||||
if not root["zButtonTrack"] then
|
if not root["zButtonTrack"] then
|
||||||
root["zButtonTrack"] = {}
|
root["zButtonTrack"] = {}
|
||||||
root["zButtonTrack"]["spells"] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}
|
root["zButtonTrack"]["spells"] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}
|
||||||
root["zButtonTrack"]["rows"] = 1
|
root["zButtonTrack"]["rows"] = 1
|
||||||
root["zButtonTrack"]["horizontal"] = nil
|
root["zButtonTrack"]["horizontal"] = nil
|
||||||
root["zButtonTrack"]["vertical"] = nil
|
root["zButtonTrack"]["vertical"] = nil
|
||||||
@@ -33,7 +33,8 @@ ZHunterMod_Track_Spells = {
|
|||||||
ZHUNTER_TRACK_MINERALS,
|
ZHUNTER_TRACK_MINERALS,
|
||||||
ZHUNTER_TRACK_HERBS,
|
ZHUNTER_TRACK_HERBS,
|
||||||
ZHUNTER_TRACK_TREASURE,
|
ZHUNTER_TRACK_TREASURE,
|
||||||
ZHUNTER_TRACK_TREES
|
ZHUNTER_TRACK_TREES,
|
||||||
|
ZHUNTER_TRACK_FISH
|
||||||
}
|
}
|
||||||
|
|
||||||
local ZHUNTER_TRACK_MAX = table.getn(ZHunterMod_Track_Spells)
|
local ZHUNTER_TRACK_MAX = table.getn(ZHunterMod_Track_Spells)
|
||||||
@@ -352,7 +353,7 @@ function zButtonTrack_CreateButtons()
|
|||||||
for i=1, table.getn(ZHunterMod_Track_Spells) do
|
for i=1, table.getn(ZHunterMod_Track_Spells) do
|
||||||
if not tonumber(saved["spells"][i]) then
|
if not tonumber(saved["spells"][i]) then
|
||||||
info = ZHunterMod_Track_Spells
|
info = ZHunterMod_Track_Spells
|
||||||
saved["spells"] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
|
saved["spells"] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
local spellIndex = saved["spells"][i]
|
local spellIndex = saved["spells"][i]
|
||||||
@@ -406,7 +407,7 @@ function zButtonTrack_Reset()
|
|||||||
local currentRoot = zButtonTrack_GetRoot()
|
local currentRoot = zButtonTrack_GetRoot()
|
||||||
currentRoot["zButtonTrack"] = {}
|
currentRoot["zButtonTrack"] = {}
|
||||||
local saved = zButtonTrack_GetSaved()
|
local saved = zButtonTrack_GetSaved()
|
||||||
saved["spells"] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
|
saved["spells"] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}
|
||||||
saved["rows"] = 1
|
saved["rows"] = 1
|
||||||
saved["horizontal"] = nil
|
saved["horizontal"] = nil
|
||||||
saved["vertical"] = nil
|
saved["vertical"] = nil
|
||||||
@@ -420,7 +421,7 @@ function zButtonTrack_Reset()
|
|||||||
saved["children"] = {}
|
saved["children"] = {}
|
||||||
saved["children"]["size"] = 36
|
saved["children"]["size"] = 36
|
||||||
saved["children"]["hideonclick"] = 1
|
saved["children"]["hideonclick"] = 1
|
||||||
saved["visible"] = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
|
saved["visible"] = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
|
||||||
zButtonTrack_EnsureConfig()
|
zButtonTrack_EnsureConfig()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user