Results: 6049Comments by: Baertram
File: Cooldowns - HT Update Branch01/11/21
https://www.esoui.com/downloads/inf...
Posted By: Baertram
https://www.esoui.com/downloads/info2783-ExoYsProcSetTimer.html
File: Thank You For Your Service01/11/21
Nope there is no dungeon finished e...
Posted By: Baertram
Nope there is no dungeon finished event. You can only track the bosses killed and their names, but there is no api to get the names so you'd have to hardcode all dungeon boss names in several languages :-( Maybe this library helps here, not sure though how up2date it is with the dungeons and bosses (DNG_SCALECALLER_PEAK_I was the l...
File: Votan's Improved Sets Book01/10/21
Re: Re: Re: Optional zone sets tracker UI
Posted By: Baertram
As Info: LibSets also provides the functions to jump to the parent (e.g. Deshan) or the current subzone (e.g. a dungeon in Deshan) inside the set books UI. But this info is hardcoded as well as there is no way to autodetect the categories in the set books + as Votan said: One would need to invest too much time to connect single sets...
File: Auto Recharge (and repair)01/08/21
Re: Auto repairing when I talk to merchant
Posted By: Baertram
Thank you for making this addon, I'm using this well a lot. And.. I think repairing cost of merchant npc is too high, so I hope this addon have an option which disable auto repairng when I talk to merchant npc There is no auto repairing if you talk to any merchant within the vanilla UI? You need to click on the repair button or u...
File: Research Assistant (Find your researchable items)01/07/21
Re: Re: Re: Re: Re: Research ASssistant addon configuration questions (2)
Posted By: Baertram
I had the same problem like you, 17 chars,not all wanted to learn all, but a few some of the basics like smithing, woodworking, clothier. I used FCOIS and ResearchAssistant, having setup RA with character settings and the few characters that wanted to learn were enabled as smith, etc -> the others were set to the same characters. So...
File: PurchaseTracker01/07/21
Hi and welcome to addon development...
Posted By: Baertram
Hi and welcome to addon development :p A few hints about your files and code. txt manifest file: You shouldn't include empty lines like ## OptionalDependsOn: They only stress the parse tools :D lua code: self -> normally only used for "classes". It works for your addon, but you have not defined PurchaseTracker as a "class"...
File: Research Assistant (Find your researchable items)01/07/21
Re: Re: Re: Research ASssistant addon configuration questions (2)
Posted By: Baertram
One idea: You can look at CraftStore. It tracks styles, research and many more, accross all characters. But I'm not sure if it is adding any "icons" to the items like ResearchAssistant does, nor am I sure if this would be possible to add icons on items other characters do not know yet (so to say: is still researchable on any of your...
File: Research Assistant (Find your researchable items)01/07/21
Re: Research ASssistant addon configuration questions (2)
Posted By: Baertram
I just installed the Research Assistant Addon and have a couple of questions.... 1 How do I configure "ALL" of my characters to be a certain craft ? i.e. i want to make all 10 of my characters learn all the blacksmithing traits, all the clothing traits, etc.. 2.  how do I get the addon to show me the duplicates ? i.e. if ALL m...
File: Sort By Quantity01/06/21
could you please add the sort funct...
Posted By: Baertram
could you please add the sort function to the refine tab of the crafting tables? Thanks for the great suggestion! This capability has been added in v6 of the SortByQuantity addon. Have fun refining mats! Could you please write these changes into the changelog so that one can see them in Minion as well, before one updates the ad...
File: LibMultiAccountSets01/06/21
Hey code, thanks for this library!...
Posted By: Baertram
Hey code, thanks for this library! Just in case you want to update your description's list of adons using this library: I'm working on an FCOItemSaver intgeration for automatic set item marking known/unknown. Edit 20201-03-08: FCOIS v2.0.1 added LibMultiAcountSets for the automatic set collectins marker icons now
File: Next Boss Stage(Custom Boss Frame)01/06/21
Your txt file is missing the space...
Posted By: Baertram
Your txt file is missing the space after the : ## OptionalDependsOn:LuiExtended -> ## OptionalDependsOn: LuiExtended Without the space the addon name won't be recognized properly and your addon might load before LuiExtended. Your function here is leaking the variable name "number" to global namespace! Very dangerou...
File: Next Boss Stage(Custom Boss Frame)01/06/21
Re: Error
Posted By: Baertram
BNSFrame_MoveStop:3: attempt to index a nil value stack traceback: BNSFrame_MoveStop:3: in function '(main chunk)' self = ud Change file ZBNS.xml, line 22: ZBNS.OnMoveStop()
File: Next Boss Stage(Custom Boss Frame)01/06/21
Please always add the neede depende...
Posted By: Baertram
Please always add the neede dependencies in the addon description so that one sees at Minin/esoui already what to install as well: LibAddonMenu-2.0 And the same about the global leaking variables and function names as with you other addon MyDung applies here (please read the other addon#s comments). function LineA LabelA Con...
File: MyDung01/06/21
Could you please add "local" up in...
Posted By: Baertram
Could you please add "local" up in front of the function names like LabelFunc, UndauntedPledges, GetGoalPledges, DailyPledges If you do not need those functions to be global, for other addons e.g. If you ened them to be globally accessible please crate a table like MyDung = {} and then add the function names to that table:...
File: pChat (Chat customization & help: look/notification/sound/automation/history)01/06/21
Thank you! But: pChat is an addon...
Posted By: Baertram
Thank you! But: pChat is an addon where I always believe in the phrase "Never change a running system"! ;) The system messages always were troubling, yeah. Not sure if this fix of yours will break other fixes that were done in the past. As there are so many addons relying on pChat, or fixing things locally (as they never impleme...
File: Addon Selector (Save AddOn profiles/packs)01/06/21
You are right, it doesn't :p If the...
Posted By: Baertram
You are right, it doesn't :p If the base table entry langArray is missing it will fail to access any "sub values" I thought it was using metatables already to use en as fallback language if another one is missing. At least my own addons do this, seems it doesn't with this one yet. Thanks for the hint. /script SetCVar("language....
File: ODT01/06/21
Thanks, • This time it's working...
Posted By: Baertram
Thanks, • This time it's working (icons in chat) • Variables rename by ODT_variable • LOCAL don't work everytime that's what i declared variables without "local" Salut et Bonne année :banana: Thanks for the update But nearly all those variables like ODT_Combox_State could just be added with local ODT_Combox_State and wo...
File: ODT01/06/21
Local variables / Global variables...
Posted By: Baertram
Local variables / Global variables & "scope" local works perfectly fine if you add them at the top of your files and BEFORE you want to access them. As you did with: local ODT_Pledges e.g. And if you define a local within a function ...end , an if ... endif or for... do end loop the local won't be accessible outside this "scope"...
File: Advanced Filters - Unique items filter01/05/21
Hello, I've been looking for a w...
Posted By: Baertram
Hello, I've been looking for a way to keep track of unique set items so that I don't accidentally deconstruct them & stumbled onto this filter add-on but I noticed it's not filtering items I know to be unique. Will there ever be an update on this plug-in or does anyone know of a add-on that will show unique set items that either a...
File: Thank You For Your Service01/03/21
:p:D;) Nice idea Hopefully the sav...
Posted By: Baertram
:p:D;) Nice idea Hopefully the saved souls will like it the same :rolleyes:
File: Champion Point Respec01/02/21
Thanks for your addon. A few impor...
Posted By: Baertram
Thanks for your addon. A few important remarks: !PLEASE DO NOT INCLUDE THE LIBRARIES IN YOUR "libs" SUBFOLDER ANYMORE! If you include them always include with their proper own txt files. But best would be the following: We got so many broken addons due to included outdated libraries... Simply add them to your ttx file's # Depen...
File: PerfectPixel12/31/20
Disable all the other addons, exit...
Posted By: Baertram
Disable all the other addons, exit the game, restart the game and see if there is still a problem. It could be linked to Advanced Filters? I have over 40 addons and have not that problem anymore. Anyway if that works then make sure all of the addons and libs are updated. I am having an issue where loading PP makes the background o...
File: Nirn Auction House12/30/20
Re: Re: Re: What's its purpose?
Posted By: Baertram
Does anyone know what the purpose of the "NirnAuctionHouse.exe" program is? Why does it require an EXE to run? :confused: As far as I know the .EXE file takes the info from the SavedVariables file and transmit it their web site, so other people can use that site to locate the items that you have listed. Ah, I see. So it technical...
File: FCO Mounty12/28/20
For Markarth DLC: FCOMounty.Z...
Posted By: Baertram
For Markarth DLC: FCOMounty.ZoneData = {-- Reach = 1207, --The Reach = 1207, = "Markarth City", --Blackreach = 1208, -- Blackreach (underground of The Reach) } Thank you. Somehow updating this addon sucks. Wished there was an autoamtic way to do this...
File: Cooldowns - HT Update Branch12/27/20
Thanks for the update but you shoul...
Posted By: Baertram
Thanks for the update but you shouldn't include ALL releases/all zip files in the addon :D And please name the dependencies needed in the addon patch description so that one is able to install them directly with Minion as one reads the text. LibAddonMenu is released with version 32 meanwhile, so you might want to update the >=30...