Showing results 1 to 25 of 420
Search took 0.01 seconds.
Search: Posts Made By: Dolgubon
Forum: Lua/XML Help 09/12/24, 02:31 AM
Replies: 3
Views: 2,855
Posted By Dolgubon
Usually, it's going to be easier to modify...

Usually, it's going to be easier to modify settings through the methods the add-on provides, but in case you ever need to modify it manually, you need to logout (character select screen is ok) and...
Forum: General Authoring Discussion 09/11/24, 12:57 PM
Replies: 6
Views: 5,928
Posted By Dolgubon
I'm not sure what exactly you're trying to do,...

I'm not sure what exactly you're trying to do, but it's possible that you might not even need to determine the current tab. For example, deconstruction can occur on any tab. Of course if you plan to...
Forum: General Authoring Discussion 09/08/24, 06:53 PM
Replies: 6
Views: 5,928
Posted By Dolgubon
You'd want to add something to the deconstruction...

You'd want to add something to the deconstruction scene. Unfortunately, I don't usually work with scenes, so I'm not sure of the exact functions, but it might be something like...
Forum: General Authoring Discussion 09/01/24, 07:01 PM
Replies: 8
Views: 4,651
Posted By Dolgubon
That's the same thing, actually. If it would take...

That's the same thing, actually. If it would take iron ingots to craft, deconstruction will give back iron ingots. So you should still be able to use the same methods
Forum: AddOn Search/Requests 09/01/24, 05:24 PM
Replies: 7
Views: 6,828
Posted By Dolgubon
There is no way for addons to communicate with...

There is no way for addons to communicate with other players. So, this is not possible.
Forum: General Authoring Discussion 09/01/24, 05:13 PM
Replies: 8
Views: 4,651
Posted By Dolgubon
What are you referring to by 'subtype'? As...

What are you referring to by 'subtype'?
As baertram mentions, the level displayed in an item's tooltip is not the same as the level of material needed to craft it. (And, indeed, you cannot craft e.g....
Forum: General Authoring Discussion 09/01/24, 02:26 PM
Replies: 8
Views: 4,651
Posted By Dolgubon
It's not clear what information you have. Where...

It's not clear what information you have. Where is this item and why can you not use GetItemLink? There's multiple ways and reasons to get the level and quality, and various reasons why a table or...
Forum: General Authoring Discussion 08/31/24, 03:44 PM
Replies: 6
Views: 8,777
Posted By Dolgubon
Let's start with 3. There's a lot of possible...

Let's start with 3. There's a lot of possible reasons why not, but I have an add on that's a great candidate, and it's so nice that you're offering to do the work to convert it! There's a github for...
Forum: Minion 07/21/24, 08:34 PM
Replies: 2
Views: 2,782
Posted By Dolgubon
This has been asked before, and they've said no....

This has been asked before, and they've said no. Apparently the plan is to make minion 4 and once that's released, they plan to make it open source, though the API will remain only usable by Minion....
Forum: General Authoring Discussion 07/13/24, 09:04 PM
Replies: 8
Views: 8,875
Posted By Dolgubon
This is not possible to do through the API....

This is not possible to do through the API. You'll need to maintain a lookup list, or point to one in another addon. There are some addons which already do this. MM has a list, as well as LLC (which...
Forum: General Authoring Discussion 05/18/24, 09:25 PM
Replies: 9
Views: 11,548
Posted By Dolgubon
Yes. Slash commands are stored in the...

Yes. Slash commands are stored in the SLASH_COMMANDS table as functions. Thus, you can call commands as you would any other other table stored in a function.e.g. /script...
Forum: AddOn Search/Requests 04/17/24, 09:53 PM
Replies: 8
Views: 7,046
Posted By Dolgubon
As far as I know there is not one to prevent it,...

As far as I know there is not one to prevent it, and it's the CP not the skill, but there is https://www.esoui.com/downloads/info2951-JackofallTrades-AutomaticCPRespec.html which can automatically...
Forum: AddOn Help/Support 03/14/24, 09:24 AM
Replies: 4
Views: 8,369
Posted By Dolgubon
First, you'll want to look at the error. What...

First, you'll want to look at the error. What line does it say, and what code is on that line? That's always critical information for figuring out errors. Second, what does function expected instead...
Forum: Wish List 02/15/24, 01:09 PM
Replies: 0
Views: 14,693
Posted By Dolgubon
[open] Make recipe ingredients API work for unknown recipes

The functions GetRecipeIngredientItemLink and GetRecipeIngredientRequiredQuantity do not work for recipes that you do not know. Would it be possible to get it unblocked for those...
Forum: Lua/XML Help 02/11/24, 10:31 PM
Replies: 4
Views: 5,511
Posted By Dolgubon
GetItemLinkSetInfo(string itemLink, boolean...

GetItemLinkSetInfo(string itemLink, boolean equipped)
* Returns: boolean hasSet, string setName, number numBonuses, number numNormalEquipped, number maxEquipped, number setId, number...
Forum: AddOn Help/Support 01/29/24, 10:39 AM
Replies: 4
Views: 5,108
Posted By Dolgubon
I think you have misunderstood what the addon is...

I think you have misunderstood what the addon is doing. Auto research has nothing to do with styles, style pages, or outfits. Rather, the intent of the addon is to research gear traits, such as...
Forum: General Authoring Discussion 01/28/24, 07:36 PM
Replies: 5
Views: 13,345
Posted By Dolgubon
The functions do still work as expected, however,...

The functions do still work as expected, however, the functionRequestGuildFinderAttributesForGuild(guildID) must be called first. It should return true, and then a short time after (200 ish ms,...
Forum: General Authoring Discussion 01/20/24, 11:55 AM
Replies: 9
Views: 14,109
Posted By Dolgubon
Sure, it doesn't stop the draining, but on the...

Sure, it doesn't stop the draining, but on the other hand, it is also going to make it far quicker to read it. Unless you make new characters all the time, it's probably enough. And even if you do...
Forum: General Authoring Discussion 01/20/24, 10:07 AM
Replies: 9
Views: 14,109
Posted By Dolgubon
You could try overwriting...

You could try overwriting StowAllVirtualItems

But i think my existing lazy farming addon can solve your issue. What it does is save a snapshot of your craft bag, and then allow you to take out...
Forum: Lua/XML Help 01/10/24, 02:02 PM
Replies: 5
Views: 6,014
Posted By Dolgubon
Unfortunately, this is a question with a very...

Unfortunately, this is a question with a very annoying answer. Which is 'no, but kind of yes, and also the yes is a pain in the ass'
Eso has a 'new item' event, but it does not differentiate between...
Forum: Site help, bugs, suggestions/questions 01/10/24, 03:19 AM
Replies: 2
Views: 2,436
Posted By Dolgubon
This should work as an example message with the...

This should work as an example message with the problem
ExampleexanpleexanpleExampleexanpleexanpleExampleexanpleexanpleExampleexanpleexanpleExampleexanpleexanpleExampleexanpleexanple
Forum: Site help, bugs, suggestions/questions 01/10/24, 03:18 AM
Replies: 2
Views: 2,436
Posted By Dolgubon
Reply, quote, and edit buttons hidden on Mobile on certain messages

If there is a very long bit of text in a reply without spaces, then the reply, edit, quote, and multiquote buttons get hidden on mobile, along with the end of the text of the post.
There is some...
Forum: General Authoring Discussion 01/10/24, 02:36 AM
Replies: 7
Views: 13,709
Posted By Dolgubon
Do not include the .git file. Personally, I use...

Do not include the .git file.
Personally, I use the Package utility (https://www.esoui.com/downloads/info1185-Package.html) to package the files.
It makes it very easy to make the .zip files.
Then...
Forum: Lua/XML Help 01/09/24, 02:05 PM
Replies: 6
Views: 7,010
Posted By Dolgubon
What are those features? Maybe they have been or...

What are those features? Maybe they have been or could be implemented somewhere else.
Forum: General Authoring Discussion 01/06/24, 12:20 AM
Replies: 8
Views: 13,689
Posted By Dolgubon
The issue here is down to how you are 'counting'...

The issue here is down to how you are 'counting' the items.
Consider this: If you have two full stacks of say, lockpicks, what would be listed in the saved vars? Or even just two partial stacks of...
Showing results 1 to 25 of 420