Results: 203Comments by: zelenin
File: LoreBooks02/02/22
user:/AddOns/LoreBooks/LoreBooks.lu...
Posted By: zelenin
user:/AddOns/LoreBooks/LoreBooks.lua:1317: function expected instead of nil |rstack traceback: user:/AddOns/LoreBooks/LoreBooks.lua:1317: in function 'OnSelect' /EsoUI/Libraries/ZO_ContextMenus/ZO_ContextMenus.lua:451: in function 'ZO_Menu_ClickItem' |caaaaaa control = ud, button = 1, menuEntry = {isDivider = F, itemYPad...
File: Servant01/17/22
Re: Auto Repair
Posted By: zelenin
I have a surplus of crown repair kits that I would like to use up. Can there be an option to use crown repair kits before any other repair kits? I am testing this feature. It will be in the next release.
File: Hyper Tools12/19/21
The same problem for stacks. Need c...
Posted By: zelenin
The same problem for stacks. Need check result == EFFECT_RESULT_FADED and reset stacks tracker.stacks = 0
File: Hyper Tools12/16/21
I want to create a widget for coold...
Posted By: zelenin
I want to create a widget for cooldown, but the timer is updated every EVENT_COMBAT_EVENT. You need to add a check for the result if not arguments.dontUpdateFromThisEvent and result == ACTION_RESULT_EFFECT_GAINED then tracker.duration = arguments.cooldown tracker.expiresAt = arguments.cooldown + GetGameTimeSeconds() end
File: Auto Category - Revised12/05/21
https://i.imgur.com/cCyKvuO.png
Posted By: zelenin
https://i.imgur.com/cCyKvuO.png
File: Rewards Tracker12/03/21
Hello. I really liked the addon, ve...
Posted By: zelenin
Hello. I really liked the addon, very useful. Made a translation of RU. But in the part with motifs, the names are long and do not fit into the cell. I suggest shifting the values at the bottom 3 points to the right. There's still an empty space there. And add the location to the description. local localization_strings = { SI...
File: Crafting Build Alert12/03/21
what is the purpose of this addon?...
Posted By: zelenin
what is the purpose of this addon? What does a crafting build look like? I have 18 characters with Grand Master Crafter and this is the first time I listen to the need to change the build.
File: Item Set Collection Tracker10/15/21
When in game, looking at my addons...
Posted By: zelenin
When in game, looking at my addons this one is not ticked. The game shuts it off. Help? https://forums.elderscrollsonline.com/en/discussion/584563/cant-enable-or-disable-addons-or-game-settings-plus-more-fix-in-thread https://www.esoui.com/forums/showthread.php?t=9459
File: Servant10/12/21
Re: Not refreshing
Posted By: zelenin
The addon is failing in Cyro. If I am stunned, dead, in a siege, or sprinting it will not apply. And it does not recheck to try again.the addon checks the food when you revive, exit the combat and once a minute.
File: Servant09/29/21
my experience scroll expired and my...
Posted By: zelenin
my experience scroll expired and my character didn't drink the "ghastly eye bowl" I had designated in PvE. I reloaded UI and all my options where cleared and no longer pulled up what I had in my inventory. I reloaded UI again and got this UI Error. i fixed it. Try 0.0.5
File: Servant09/29/21
Re: version 4
Posted By: zelenin
for some reason my auto eat food in pve and pvp along with my AP booster food were no longer functioning. I did try other foods and having them at the expiring threshold or removing them manually to see if it would kick in but the addon never did. I rolledback to version 2 and now everything seems fine. Not sure if anyone else experi...
File: Servant09/29/21
It seems that with the addition of...
Posted By: zelenin
It seems that with the addition of using experience scrolls, the use of ambrosia broke. Or does the addon only allow the character to use food crafted by this character, and not by third-party players? you can eat any food selected in the settings
File: Servant09/24/21
Re: request
Posted By: zelenin
Is it possible to add an option to set a food/drink for PvE content? and if the option for trials/arenas is on, to eat/drink something different? for example I use witchmother's brew for overland PvE content but in trials I use Bi-stat food. I guess if I was still in a trial/arena it would refresh that food, otherwise if it expires a...
File: Servant09/24/21
Re: Great job!
Posted By: zelenin
Great addon. It's a pity that you can't use XP scrolls to boost EXP.I'm working on it
File: Rewards Tracker09/11/21
some feedback on the new sul-xan mo...
Posted By: zelenin
some feedback on the new sul-xan motifs alert/popup, they keep showing up every hour for some reason, I got no idea why this is happening. Can we make it a setting to only pop up when the timer has concluded? Pop up showing up - https://puu.sh/Iaobp/9e0b470f45.png My /rewards-tracker - https://puu.sh/IaobE/254edce5d7.png...
File: Rewards Tracker09/02/21
Hey! Great addon, but alliance p...
Posted By: zelenin
Hey! Great addon, but alliance point outputs to chat that it adds are very annoying. I disabled these myself in code, but would be great if it was an option in future updates, if any planned. you got it
File: Hyper Tools08/25/21
btw this is the coolest addon that...
Posted By: zelenin
btw this is the coolest addon that I have dreamed about for a long time. Big thanks!
File: Hyper Tools08/25/21
function HT_checkIfItemSetsEquipped...
Posted By: zelenin
function HT_checkIfItemSetsEquipped(itemSetTable) if next(itemSetTable) == nil then --If input table is empty return true return true end for _, itemSet in pairs(itemSetTable) do local numOfItems = 0 local setName, maxEquipped -- 1. if I have three jewelries numOfItems = 3...
File: Hyper Tools08/25/21
function HT_removeGender(name)...
Posted By: zelenin
function HT_removeGender(name) b = string.find(name, "%^") if b then name = string.sub(name, 1, b - 1) end return name end b leaks to global namespace. You need to use zo_strformat("<<1>>", name) or ZO_CachedStrFormat("<<1>>", name) for this. These funcntions formats the string (according to gender) on...
File: Hyper Tools08/25/21
does not work correctly "Get Effect...
Posted By: zelenin
does not work correctly "Get Effect Cooldown". The timer is restarted every event with the needed abilityId, i.e. for ACTION_RESULT_EFFECT_GAINED, ACTION_RESULT_EFFECT_GAINED_DURATION, ACTION_RESULT_EFFECT_FADED. Need to add EVENT_MANAGER:AddFilterForEvent(name, EVENT_COMBAT_EVENT, REGISTER_FILTER_COMBAT_RESULT, ACTION_RESULT_EFFECT...
File: Hyper Tools08/25/21
user:/AddOns/HyperTools/Settings.lu...
Posted By: zelenin
user:/AddOns/HyperTools/Settings.lua:1627: attempt to index a nil value |rstack traceback: user:/AddOns/HyperTools/Settings.lua:1627: in function 'Update' |caaaaaa visibilityConditions = {Get Effect Cooldown = F, Get Effect Duration = T, Entering/Exiting Combat = T} |r user:/AddOns/HyperTools/Settings.lua:1759: i...
File: World Event Alert (aka Dragon Alert)08/16/21
change 100036 => 101031 Is Waking...
Posted By: zelenin
change 100036 => 101031 Is Waking Flame not 100036? no, 101031 for syncing with Update 31
File: World Event Alert (aka Dragon Alert)08/09/21
change 100036 => 101031
Posted By: zelenin
change 100036 => 101031
File: Buff The Group (BTG)08/06/21
user:/AddOns/BuffTheGroup/BuffTheGr...
Posted By: zelenin
user:/AddOns/BuffTheGroup/BuffTheGroup.lua:184: table index is nil |rstack traceback: user:/AddOns/BuffTheGroup/BuffTheGroup.lua:184: in function 'btg.Reset' |caaaaaa j = 3 |r user:/AddOns/BuffTheGroup/BuffTheGroup.lua:26: in function 'btg.CheckActivation' |caaaaaa eventCode = 589824, zoneId = 126
File: DO NOT USE - libIsJustaAlchemy (WIP)07/29/21
user:/AddOns/libIsJustaAlchemy/api....
Posted By: zelenin
user:/AddOns/libIsJustaAlchemy/api.lua:373: operator * is not supported for nil * number |rstack traceback: user:/AddOns/libIsJustaAlchemy/api.lua:373: in function 'lib:GetAlchemyRecipes' |caaaaaa self = {typeFilter = 1}, traits = {1 = 1}, ranOnce = F, OnUpdateHandler = user:/AddOns/libIsJustaAlchemy/api.lua:362 |...