Results: 5992Comments by: Baertram
File: Aldanga's Lazier Writ Precrafter06/16/20
You say Settings You can enable (o...
Posted By: Baertram
You say Settings You can enable (or disable) professions in the settings menu. But there is no settings menu via LibAddonMenu mentioned in the dependencies. You should add it as an optional info in your description! It is referenced though inside your settings.lua file via the global library variable LibAddonMenu2. This way i...
File: Aldanga's Lazier Writ Precrafter06/16/20
Hey thanks for the addon! A hint:...
Posted By: Baertram
Hey thanks for the addon! A hint: I recommend disabling LWC autocraft if you're wanting to precraft. As the settings are stored in the global SavedVariables tables, you are able to access them from your addon as well. So maybe check the global table mentioned in DolgubonsLazyWritCrafter.txt at the ## SavedVariables: entry. You a...
File: LibMapPins06/16/20
Got no error with r26 but it someho...
Posted By: Baertram
Got no error with r26 but it somehow caused Votans Minimap to show mappins like worldbosses at wrong locations in Northern Elsweyr. e.g. if I opened the map I was standing right in front of the tiger boss . If I changed my view angle the Minimap told me I was still looking at it but the map said I was looking 180° in the other dire...
File: pChat (Chat customization & help: look/notification/sound/automation/history)06/15/20
Re: Whisper Sound Notification
Posted By: Baertram
After Greymoor launched, my Whisper Sound Notifications stopped working. I went back into the settings to make sure a sound was selected and I found no issues. I've updated all my addons and dependency addons and still no luck so far. I disables all my other addons including their dependency addons and my pChat whisper sound notifica...
File: Research Assistant (Find your researchable items)06/13/20
Re: error
Posted By: Baertram
I suppose the error below is because I didn't SET THE CURRENTLY LOGGED IN CHARACTER? **smacks forehead** Thank you. :banana: user:/AddOns/ResearchAssistant/ResearchAssistantScanner.lua:210: operator < is not supported for number < boolean |rstack traceback: user:/AddOns/ResearchAssistant/ResearchAssistantScanner.lua:210: in fun...
File: WishList (Set item search&tracker/wanted Gear list)06/13/20
WishList - Dependencies & HowTo
Posted By: Baertram
-PLEASE READ THIS FIRST BEFORE POSTING A COMMENT- WishList - Nedded dependencies This addon depends on the following libraries, which you need to download and install as standalone libraries in order to let this addon work properly! LibSets -> This library holds all the sets and setItem data. WishList does NOT contain any sets...
File: WishList (Set item search&tracker/wanted Gear list)06/13/20
Please, add Greymoor items. :p Rea...
Posted By: Baertram
Please, add Greymoor items. :p Read below, or at my new sticky first comment above please
File: ESOUI lua API autocompletion for JetBrains IntelliJ IDEA IDE (EmmyLua plugin) & esoui sources search06/12/20
Nope, not in this tool. The json an...
Posted By: Baertram
Nope, not in this tool. The json and xml are for manual lookup. But sirinsidiator added it on his website. Check the other dev tools here on esoui. https://www.esoui.com/downloads/info2068-EclipseLDTAutocomplete.html You can add the xlst files to intellij xml validator entries in the settings. And there is one line to set...
File: Assist Rapid Riding06/11/20
Found another small bug: If you mo...
Posted By: Baertram
Found another small bug: If you mount and skill 5 e.g. was exchanged to Rapids, you use it. After that you fall of a clif and die. Next time you mount rapids will not be slotted to skill slot 5 until you unmount and mount again. Maybe reset the timers etc. of your addon as one dies -> EVENT_UNIT_DEATH_STATE_CHANGED("player", isDea...
File: Auto Handle Shared Quests06/10/20
Hm the update should have exactly a...
Posted By: Baertram
Hm the update should have exactly addressed this error message, not forcing it. Before it was a string "2.1" and failed so I changed it to be a number 2.1 now and it should not produce this error message anymore. But now it does for you? :confused: This is weird. I guess the old SV containing the "string version" fail to be compa...
File: TitleFlex06/10/20
Thanks for the addon but you got a...
Posted By: Baertram
Thanks for the addon but you got a wrong code line in there for the LAM2 settings menu: local LAM2 = LibStub('LibAddonMenu-2.0') LibStub is outdated and not to be used anymore if not really needed! Where did you get this example from? Please tell me so we can inform the addon author or template or wiki entry to change the wro...
File: Name Language Ninja - Translation assistant06/10/20
It's just a way ZOs introduced to a...
Posted By: Baertram
It's just a way ZOs introduced to add the gender to the names etc. as French, German and other languages do not only use 1 arcticle e.g. but gender dependend there are 2 or 3, and also the singular and plurals differ as well. It's not always only an "s" at the end. Thanks but please make the non-english names strip the gender spec...
File: Name Language Ninja - Translation assistant06/10/20
Thanks but please make the non-engl...
Posted By: Baertram
Thanks but please make the non-english names strip the gender specific stuff (like ^m for masculin or ^f feminin or ^np neutral plural) etc. by using this (can also apply on the EN stuff if you do not want to make a difference here): local itemNameClean = ZO_CachedStrFormat("<>", itemName) itemName will be the name con...
File: LibMultilingualName06/10/20
The benefit of tables is that if yo...
Posted By: Baertram
The benefit of tables is that if you dump the itemnames to the SavedVariables by scanning them with a debug function e.g. you can simply copy them over to your addon afterwards without having to alter or add "if ... end" functions around them. You could use some function of the lib e.g. like local startItemId, endItemId = 1, 300000...
File: PerfectPixel06/10/20
Re: Re: Re: missing backgrounds
Posted By: Baertram
Did you try the settings of PP, there are some options to change the inventopry style etc. You can try to change this file (LOGOUT FIRST! Make a backup, and then change it. If it does not work copy back the file from the backup AFTER you have LOGGED OUT again!). live/AddOns/PerfectPixel/scenes/inventoryScene.lua Line 25, old c...
File: CoordsAndHeading06/09/20
As I said it's just about how you'd...
Posted By: Baertram
As I said it's just about how you'd like to use the data. The coordinates on the current map are not the same if you try to use them from another map. Like there are "local on current" and "global on whole Tamriel Map" and you'd need to map them from local to global or vice versa if you would like to use them from everywhere. Migh...
File: CoordsAndHeading06/09/20
Could you describe where you get th...
Posted By: Baertram
Could you describe where you get the coordinates from? Are those normalized map coordinates retrieved via API functions? As maps have löocal coordinates and there also exist global coordinates (related to the whole Temrial map e.g.) this could be different if ppl like to use the coordinates. You may want to check LibGPS for that t...
File: Display Leads - with Location Info06/09/20
Interested into adding multi langua...
Posted By: Baertram
Interested into adding multi language Support to your addon? If so I can help you, just send me a pm. One would need to change the string checks to use unique id's instead though, like defined constants in your addon. String comparison is always not that good if you want to work with different languages. Integers are easier to hand...
File: Advanced Filters - Updated06/08/20
logout and Close the eso game befor...
Posted By: Baertram
logout and Close the eso game before updating or installing libraries. They got txt files which the addon manager is not updating properly if you are still logged in. As the dependencies get build as the game client starts it always safer to have it closed, at least as libraries are updated/installed new. AddOns can have the same p...
File: Where Are You06/08/20
Is this also available outside cyro...
Posted By: Baertram
Is this also available outside cyrodiil (I know not inside dungeons due to api restrictions) just in overland?
File: PerfectPixel06/08/20
Re: missing backgrounds
Posted By: Baertram
Hi everyone... I just installed the mod and all tooltips and dialog windows (when fast travelling f.e.) are missing their backgrounds... Is that intended or did i miss the option to turn them back on? edit: after my game crashed, everything works fine now... LOL If you install addons as your game is running this might happen....
File: Advanced Filters - Updated06/08/20
So how does this work then? Your...
Posted By: Baertram
So how does this work then? Your latest update now requires a newer version of LibCustomMenu, or so the in-game addon thing says? Yes. Update the dependencies by installing always the newest versions. Just like addons. Put them into the live/AddOns folder, just like normal addons as well, and it will find and use them. I rea...
File: FCO StarveStop06/07/20
Re: Weird error message
Posted By: Baertram
If the error really shows this text "ZOS says I can't CallSecureProtected, they say false" its not because of this addon here. Please check your other food buff related addons then or only test with FCOCS enabled. Hey guys, I have a very weird problem. When my buff food duration reaches the point of 10 minutes left, I get this er...
File: Advanced Filters - Updated06/07/20
So how does this work then? Your...
Posted By: Baertram
So how does this work then? Your latest update now requires a newer version of LibCustomMenu, or so the in-game addon thing says? Yes. Update the dependencies by installing always the newest versions. Just like addons. Put them into the live/AddOns folder, just like normal addons as well, and it will find and use them.
File: PerfectPixel06/06/20
On your Screenshot there is enabled...
Posted By: Baertram
On your Screenshot there is enabled at least another addon AutoCategory. And either the screenshot is the wrong one or I'm not able to see any quickslot or overlap problem? And the inventory does not even show quickslot at the bottom. Only at an own quickslot tab! Or are you using the game pad mode?even then it would look other t...