Download
(211 Kb)
Download
Updated: 12/16/19 08:54 PM
Pictures
File Info
Compatibility:
Dragonhold (5.2.5)
Updated:12/16/19 08:54 PM
Created:05/13/18 03:13 PM
Monthly downloads:65
Total downloads:16,561
Favorites:34
MD5:
EsoSets - Set Search  Popular! (More than 5000 hits)
Version: 1.6
by: Dr_Swizz [More]
Search for sets in game by weight, set bonus, dungeon / trial, zone, update, and type. ie crafted, monster,
overland ...

To Open the addon simply type /esosets into the chat

To Search from chat type /setsearch followed by whatever you would like to search.
this will automatically open the app and have searched for you!

Examples:

/setsearch defile
/setsearch light
/setsearch city of ash
/setsearch auridon

v 1.6 UPDATED ALL SETS UP TO DRAGONHOLD DLC

v 1.51 -- Fixed An Issue Where the hyphen in 'Warrior-Poet' wasn't playing well with the others. It is now just 'Warrior Poet'

v1.3 -- Added a keybind to the controls menu to show and hide the search window

v1.21 -- Fixed An Issue Where Summerset Crafted Sets Were Not Showing Up In The Search
v 1.6 UPDATED ALL SETS UP TO DRAGONHOLD DLC

v 1.51 -- Fixed An Issue Where the hyphen in 'Warrior-Poet' wasn't playing well with the others. It is now just 'Warrior Poet'

v.1.5 - Added And Updated Sets for 'Murkmire'

v.1.4 - Updated sets for 'Wolfhunter'. Added a Save Search History feature. Added Ability to mark sets as favorites

v1.31 Fixed 2nd Piece bonus for Curse Eater, Grothdar name typo, and updated Bogdan the night flame to have a monster chest associated with it

v1.3 Added a keybind to the controls menu to show and hide the search window

v1.21 -- Fixed An Issue Where Summerset Crafted Sets Were Not Showing Up In The Search
Optional Files (0)


Archived Files (5)
File Name
Version
Size
Uploader
Date
1.51
208kB
Dr_Swizz
11/26/18 06:28 AM
1.5
208kB
Dr_Swizz
10/24/18 02:24 PM
1.4
181kB
Dr_Swizz
08/20/18 07:07 AM
1.33
181kB
Dr_Swizz
08/13/18 03:14 PM
1.31
179kB
Dr_Swizz
06/25/18 10:18 AM


Post A Reply Comment Options
Unread 12/17/19, 08:27 PM  
Dr_Swizz
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 3
Uploads: 1
Originally Posted by Baertram
Just a hint, you could use "LibSets" instead of hardcoding the data into your addon.

And PLEASE do NOT include the libraries like you currently do, hardcoded into your Esosets.txt (btw the name should be the same like the folder name so it should be EsoSets.txt) file.
More information: https://wiki.esoui.com/Libraries


Wrong:
Code:
## Title: Esosets
## Description: Search and Find Sets By Weight, Trait, Location, and More
## APIVersion: 100023 100024
## Author: Dr_Swizz
## Version: 1.6
## OptionalDependsOn: LibAddonMenu-2.0 LibScroll
## SavedVariables: EsosetsSavedVariables


Libs/LibStub/LibStub.lua
Libs/LibAddonMenu-2.0/LibAddonMenu-2.0.lua
Libs/LibAddonMenu-2.0/controls/panel.lua
Libs/LibAddonMenu-2.0/controls/submenu.lua
Libs/LibAddonMenu-2.0/controls/button.lua
Libs/LibAddonMenu-2.0/controls/checkbox.lua
Libs/LibAddonMenu-2.0/controls/colorpicker.lua
Libs/LibAddonMenu-2.0/controls/custom.lua
Libs/LibAddonMenu-2.0/controls/description.lua
Libs/LibAddonMenu-2.0/controls/dropdown.lua
Libs/LibAddonMenu-2.0/controls/editbox.lua
Libs/LibAddonMenu-2.0/controls/header.lua
Libs/LibAddonMenu-2.0/controls/slider.lua
Libs/LibAddonMenu-2.0/controls/texture.lua
Libs/LibAddonMenu-2.0/controls/iconpicker.lua

Libs/LibScroll/LibScroll.lua 
...
Correct:
Code:
## Title: Esosets
## Description: Search and Find Sets By Weight, Trait, Location, and More
## APIVersion: 100023 100024
## Author: Dr_Swizz
## Version: 1.6
## OptionalDependsOn: LibAddonMenu-2.0 LibScroll
## SavedVariables: EsosetsSavedVariables

Libs/LibScroll/LibScroll.lua

Delete folder/files:
Code:
/Libs/LibStub/
/Libs/LibAddonMenu-2.0/
/Libs/LibAddonMenu-2.0.txt
/Libs/exampleoptions.lua
IF you want to include the libraries into your addon make sure they are ALWAYS up 2 date please AND contain their own txt file (for the libraries which are released with it's own txt file. Not sure about LibScroll! You can indlude this one I guess and hardcode the call line in EsoSets.txt like before than).

You better not include them and only use the ## DependsOn: or ## OptionalDependsOn: tags in your EsoSets.txt file to assure the libraries get loaded from the AddOns folder (standalone / non-embedded installation of the dependencies).

Thank you. It's been been ages since i read up on this
Report comment to moderator  
Reply With Quote
Unread 12/17/19, 12:23 AM  
Baertram
Super Moderator
 
Baertram's Avatar
ESOUI Super Moderator
AddOn Author - Click to view AddOns

Forum posts: 4913
File comments: 5990
Uploads: 78
Just a hint, you could use "LibSets" instead of hardcoding the data into your addon.

And PLEASE do NOT include the libraries like you currently do, hardcoded into your Esosets.txt (btw the name should be the same like the folder name so it should be EsoSets.txt) file.
More information: https://wiki.esoui.com/Libraries


Wrong:
Code:
## Title: Esosets
## Description: Search and Find Sets By Weight, Trait, Location, and More
## APIVersion: 100023 100024
## Author: Dr_Swizz
## Version: 1.6
## OptionalDependsOn: LibAddonMenu-2.0 LibScroll
## SavedVariables: EsosetsSavedVariables


Libs/LibStub/LibStub.lua
Libs/LibAddonMenu-2.0/LibAddonMenu-2.0.lua
Libs/LibAddonMenu-2.0/controls/panel.lua
Libs/LibAddonMenu-2.0/controls/submenu.lua
Libs/LibAddonMenu-2.0/controls/button.lua
Libs/LibAddonMenu-2.0/controls/checkbox.lua
Libs/LibAddonMenu-2.0/controls/colorpicker.lua
Libs/LibAddonMenu-2.0/controls/custom.lua
Libs/LibAddonMenu-2.0/controls/description.lua
Libs/LibAddonMenu-2.0/controls/dropdown.lua
Libs/LibAddonMenu-2.0/controls/editbox.lua
Libs/LibAddonMenu-2.0/controls/header.lua
Libs/LibAddonMenu-2.0/controls/slider.lua
Libs/LibAddonMenu-2.0/controls/texture.lua
Libs/LibAddonMenu-2.0/controls/iconpicker.lua

Libs/LibScroll/LibScroll.lua 
...
Correct:
Code:
## Title: Esosets
## Description: Search and Find Sets By Weight, Trait, Location, and More
## APIVersion: 100023 100024
## Author: Dr_Swizz
## Version: 1.6
## OptionalDependsOn: LibAddonMenu-2.0 LibScroll
## SavedVariables: EsosetsSavedVariables

Libs/LibScroll/LibScroll.lua

Delete folder/files:
Code:
/Libs/LibStub/
/Libs/LibAddonMenu-2.0/
/Libs/LibAddonMenu-2.0.txt
/Libs/exampleoptions.lua
IF you want to include the libraries into your addon make sure they are ALWAYS up 2 date please AND contain their own txt file (for the libraries which are released with it's own txt file. Not sure about LibScroll! You can indlude this one I guess and hardcode the call line in EsoSets.txt like before than).

You better not include them and only use the ## DependsOn: or ## OptionalDependsOn: tags in your EsoSets.txt file to assure the libraries get loaded from the AddOns folder (standalone / non-embedded installation of the dependencies).
Report comment to moderator  
Reply With Quote
Unread 02/25/19, 02:07 PM  
Climbatiz
 
Climbatiz's Avatar

Forum posts: 0
File comments: 6
Uploads: 0
is this mod still being maintained?
Report comment to moderator  
Reply With Quote
Unread 06/25/18, 05:57 PM  
code65536
AddOn Author - Click to view AddOns

Forum posts: 21
File comments: 371
Uploads: 40
Report comment to moderator  
Reply With Quote
Unread 06/16/18, 11:47 AM  
Dr_Swizz
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 3
Uploads: 1
Originally Posted by murkalurk2099
Can it find the arena weapons? I can't seem to
You wouldn't be able to, i don't have them in there lol. That is something i am looking into
Report comment to moderator  
Reply With Quote
Unread 06/16/18, 11:42 AM  
murkalurk2099

Forum posts: 6
File comments: 34
Uploads: 0
Can it find the arena weapons? I can't seem to
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: