Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: Baertram
Forum: AddOn Help/Support Today, 03:23 PM
Replies: 14
Views: 786
Posted By Baertram
I guess it was OneDrive then in the end, not...

I guess it was OneDrive then in the end, not Minion.
OneDrive blocks access to folders and files and if other tools, or even the ESO game, tries to access them MS OneDrive might be blocking it and...
Forum: Lua/XML Help Today, 03:03 PM
Replies: 3
Views: 44
Posted By Baertram
You got a typo in there then, or did something...

You got a typo in there then, or did something else wrong (filenames of lua in your txt got a typo or whatever).


if addonName ~= GOLDMetrics.name then return end


Watch out that the name in...
Forum: Lua/XML Help Today, 01:27 PM
Replies: 3
Views: 44
Posted By Baertram
Your EVENT_ADD_ON_LOADED is commented so I assume...

Your EVENT_ADD_ON_LOADED is commented so I assume your addon never loads properly.

Use EVENT_ADD_ON_LOADED to Init once, it will fire for each addon so make sure you check for your addon''s name and...
Forum: AddOn Help/Support Today, 01:26 PM
Replies: 4
Views: 33
Posted By Baertram
Guys, please: -Disable addons like BugCatcher and...

Guys, please:
-Disable addons like BugCatcher and No Thank you (which posted the error to your notifications as we can see from the screeshot -> that's not ZOs vanilla) too.

-Do NOT report errors by...
Forum: General Authoring Discussion Today, 10:12 AM
Replies: 12
Views: 1,048
Posted By Baertram
Another example for that will be e.g....

Another example for that will be e.g. SavedVariables where you use ZO_SavedVars wrapper to load the global SavedVariable table, which you have defined in your manifest txt file after ##...
Forum: Minion Today, 09:09 AM
Replies: 1
Views: 74
Posted By Baertram
Read the forums here, use the search. There are...

Read the forums here, use the search. There are plenty of threds from that past 3 weeks stating "exactly the same" error message...
And you will find the answer pretty easily.

Hint: Sticky...
Forum: Minion Today, 09:08 AM
Replies: 1
Views: 45
Posted By Baertram
https://i.imgur.com/D17LMNJ.png Thanks for...

https://i.imgur.com/D17LMNJ.png
Thanks for reading first, then posting and attaching what we need to help you.
Forum: Lua/XML Help Today, 04:37 AM
Replies: 2
Views: 235
Posted By Baertram
--- @param timestamp integer53 --- @return year...

--- @param timestamp integer53
--- @return year integer, month integer, day integer
function GetDateElementsFromTimestamp(timestamp) end



Rough example

local oldYear, oldMonth, oldDay =...
Forum: General Authoring Discussion Today, 03:53 AM
Replies: 12
Views: 1,048
Posted By Baertram
Yes looks good;) Added a few comments, hope it's...

Yes looks good;)
Added a few comments, hope it's understandable.
Maybe that helps you too:


function FarmersToolkit.BountyCheck()

local CurBounty=GetFullBountyPayoffAmount(); --lua does not...
Forum: AddOn Help/Support Today, 03:41 AM
Replies: 14
Views: 786
Posted By Baertram
Try the windows search in your live/AddOns folder...

Try the windows search in your live/AddOns folder (or use an external free tool called "Notepad++:...
Forum: General Authoring Discussion Yesterday, 03:15 AM
Replies: 12
Views: 1,048
Posted By Baertram
Yes, having a timer run every 15s as in your case...

Yes, having a timer run every 15s as in your case is fine.
Just make sure the timer unregisters properly once your bounty is gone, and does not register with a new name (reuse the same name so it...
Forum: AddOn Help/Support Yesterday, 03:11 AM
Replies: 34
Views: 7,903
Posted By Baertram
Okay thanks for the info but it still calls the...

Okay thanks for the info but it still calls the internal function RequestGuildHistoryLoop which then calls API of the guild history, even if LibHistoire is enabled,...
Forum: AddOn Help/Support Yesterday, 03:00 AM
Replies: 14
Views: 786
Posted By Baertram
Hint: The correct name for LibMediaProxy...

Hint: The correct name for LibMediaProxy (mentioned in Shadowfen's answer) is LibMediaProvider
But I actually do not have ANY issue with that library nor any addons using it, so if you got errors...
Forum: AddOn Help/Support 04/24/24, 03:33 PM
Replies: 34
Views: 7,903
Posted By Baertram
I personally noticed that addons using the older...

I personally noticed that addons using the older "Legacy listeners" of LibHistoire (e.g. TTC ) were making my guild history lock with the message I can only request every 2 seconds more data,...
Forum: AddOn Search/Requests 04/24/24, 03:30 PM
Replies: 1
Views: 389
Posted By Baertram
Addon's cannot send any mesages automated to the...

Addon's cannot send any mesages automated to the chat, visible to others, you always need to press manually the return key to send a chat message.
Forum: AddOn Help/Support 04/24/24, 03:29 PM
Replies: 14
Views: 786
Posted By Baertram
Find out if your addon folder you use is the...

Find out if your addon folder you use is the correct one, via the mentioned screenshot trick here:
https://www.esoui.com/forums/showthread.php?t=8858

Maybe you did update all but its in the wrong...
Forum: Lua/XML Help 04/23/24, 04:54 PM
Replies: 1
Views: 400
Posted By Baertram
control:SetMouseEnabled(true) control:SetMovable(t...

control:SetMouseEnabled(true)
control:SetMovable(true)
Use handlers OnMoveStart and OnMoveStop for the position.there should be a tutorial at the Wiki for that too.

Found...
Forum: AddOn Help/Support 04/23/24, 04:46 PM
Replies: 1
Views: 384
Posted By Baertram
How to find your addons...

How to find your addons folder:
https://www.esoui.com/forums/showthread.php?t=8858

Howto, and where to report addon related errors, to get the best...
Forum: Minion 04/23/24, 03:45 AM
Replies: 8
Views: 1,624
Posted By Baertram
x="2660.0" Depending on your screen resolution...

x="2660.0"
Depending on your screen resolution this is on your 2nd screen. 1st would be max 1920 e.g.
I guess Minion is bulding the sum of 2+ monitors widht's


I wonder why you do not see the...
Forum: General Authoring Discussion 04/21/24, 03:17 PM
Replies: 12
Views: 1,048
Posted By Baertram
Those RegisterForUpdate timers might be okay to...

Those RegisterForUpdate timers might be okay to update a counter showing on screen but they should not be used to run timers in general, where other ways are better. e.g. events fire or...
Forum: Lua/XML Help 04/21/24, 06:04 AM
Replies: 2
Views: 423
Posted By Baertram
Did you try ACTION_RESULT_KILLING_BLOW or any...

Did you try ACTION_RESULT_KILLING_BLOW or any related events?
Maybe only working in PvP though, not sure.
Forum: Alpha/Beta AddOns 04/21/24, 04:27 AM
Replies: 3
Views: 702
Posted By Baertram
https://i.imgur.com/qswU2vj.png Explained here...

https://i.imgur.com/qswU2vj.png

Explained here too:
https://www.esoui.com/forums/showthread.php?p=44591#post44591
-> If you do not want to take over but create a patch:

I'll add a screenshot so...
Forum: General Authoring Discussion 04/21/24, 04:25 AM
Replies: 12
Views: 1,048
Posted By Baertram
By searching in esoui sources for event_justice I...

By searching in esoui sources for event_justice I found the bounty display control.

At this function it seems to update your currently active bounty currency (gold to...
Forum: General Authoring Discussion 04/19/24, 04:03 PM
Replies: 12
Views: 1,048
Posted By Baertram
Wrong forum, moved to the correct one. Read here...

Wrong forum, moved to the correct one.

Read here about how to see which events fire (by enabling an overall event listener):
https://www.esoui.com/forums/showthread.php?t=10899&highlight=track

Hope...
Forum: Minion 04/19/24, 02:44 PM
Replies: 8
Views: 1,624
Posted By Baertram
The xml is created once as the Minion program was...

The xml is created once as the Minion program was run afaik, and after that it's only updated with the saved games, path, addons installed, and the UI settings you choose (including the current...
Showing results 1 to 25 of 500