Showing results 1 to 25 of 78
Search took 0.00 seconds.
Search: Posts Made By: Wobin
Forum: Dev Tools 06/22/14, 06:39 PM
Replies: 5
Views: 17,036
Posted By Wobin
I recommend SourceTree...

I recommend SourceTree (http://www.sourcetreeapp.com/) as a good Windows git client =)
Forum: General Authoring Discussion 06/18/14, 07:30 PM
Replies: 12
Views: 8,190
Posted By Wobin
ESOUI's package and zip is brilliant. Otherwise...

ESOUI's package and zip is brilliant. Otherwise if I pull from Github, I have to edit the folder names, and -then- upload them.

Having a button that does all that for me was a godsend. I enjoy the...
Forum: General Authoring Discussion 06/18/14, 09:09 AM
Replies: 3
Views: 4,094
Posted By Wobin
I used the following in GuildLib local...

I used the following in GuildLib


local visitedTables = {}

function LibGuildInfo:DeepTableCopy(source, subCall)
local dest = {}

for k, v in pairs(source) do
if type(v) ==...
Forum: General Authoring Discussion 06/10/14, 02:55 AM
Replies: 11
Views: 7,667
Posted By Wobin
Absolutely, they're all feature complete (aside...

Absolutely, they're all feature complete (aside from some stuff ckaotik wanted in MrPlow). I'll add you in to the projects if you enabled Git on your account
Forum: General Authoring Discussion 06/10/14, 12:22 AM
Replies: 11
Views: 7,667
Posted By Wobin
Moving on to Wildstar

Stepping over to Wildstar, and closing my current sub to ESO.

Let me know if you want to maintain any of my addons, they're mostly feature complete, just one or two bugs outstanding (see...
Forum: General Authoring Discussion 06/03/14, 09:47 PM
Replies: 22
Views: 17,912
Posted By Wobin
I write addons because I feel there's a lack in...

I write addons because I feel there's a lack in the UI that doesn't supply the functionality I would like. It makes it hard to work on 'request' addons unless I feel it's correcting an issue I had...
Forum: Lua/XML Help 06/03/14, 09:33 PM
Replies: 8
Views: 8,048
Posted By Wobin
Any reason you can't use both events? The loot...

Any reason you can't use both events? The loot one to get the quantity, then match it to the slot update one with a link for the rest of your processing
Forum: Lua/XML Help 05/30/14, 03:21 AM
Replies: 23
Views: 54,433
Posted By Wobin
Yes. That way, if there's a match, it doesn't...

Yes. That way, if there's a match, it doesn't bother checking the rest of the tables.

As for your requirements, there are two ways you can go about it, depending on how often the information is...
Forum: Lua/XML Help 05/30/14, 03:10 AM
Replies: 23
Views: 54,433
Posted By Wobin
The second are table references, the first is a...

The second are table references, the first is a single variable.

Essentially:

Harvest.DataStore.en.auridon.base
is

Harvest = {}
Harvest["DataStore"] = {}
Harvest["DataStore"]["en"] = {}
Forum: Lua/XML Help 05/30/14, 01:07 AM
Replies: 23
Views: 54,433
Posted By Wobin
Just as a note, you can escape early from that...

Just as a note, you can escape early from that loop by using return true as soon as you have a match and return false outside the loop.
Forum: Lua/XML Help 05/30/14, 12:39 AM
Replies: 23
Views: 54,433
Posted By Wobin
The answer to 'how do I store this info' will...

The answer to 'how do I store this info' will largely rest on the question "What are you doing with the info?"

Note that you can store the information as sparsely as you need for storage purposes,...
Forum: Lua/XML Help 05/30/14, 12:36 AM
Replies: 23
Views: 54,433
Posted By Wobin
It's storing a table reference at that point. Not...

It's storing a table reference at that point. Not sure if that'll actually work as a SV result (if that's what it is).
Forum: Site help, bugs, suggestions/questions 05/29/14, 08:54 AM
Replies: 1
Views: 1,465
Posted By Wobin
[Suggestion] Bug/Features tab in portal

The "Sort by Interface" option appears only to sort the entries on the current page, I missed the fact that there were further feature requests on other pages for that interface, because I'd assumed...
Forum: Site help, bugs, suggestions/questions 05/29/14, 08:51 AM
Replies: 2
Views: 1,370
Posted By Wobin
The latter.

The latter.
Forum: Site help, bugs, suggestions/questions 05/29/14, 08:49 AM
Replies: 1
Views: 1,377
Posted By Wobin
Seconded. I find Markdown much more intuitive to...

Seconded. I find Markdown much more intuitive to write, and I'd be able to copy/paste from Github and the like to get the same result
Forum: General Authoring Discussion 05/29/14, 08:15 AM
Replies: 8
Views: 6,162
Posted By Wobin
At which point they might as well bake it into...

At which point they might as well bake it into the client
Forum: AddOn Search/Requests 05/29/14, 07:53 AM
Replies: 12
Views: 6,505
Posted By Wobin
Pushing another version. Give this one a try

Pushing another version. Give this one a try
Forum: AddOn Search/Requests 05/29/14, 05:41 AM
Replies: 12
Views: 6,505
Posted By Wobin
Hm, looks like Zenimax fixed the original bug,...

Hm, looks like Zenimax fixed the original bug, Invite is showing up with no addon modification required.
Forum: Tutorials & Other Helpful Info 05/28/14, 10:57 PM
Replies: 15
Views: 38,229
Posted By Wobin
I kinda got around the 'storing links in a...

I kinda got around the 'storing links in a certain language' issue by using profiles and the Cvar in the SV to store language specific links. It increases the storage requirements for people who swap...
Forum: General Authoring Discussion 05/27/14, 02:14 PM
Replies: 12
Views: 12,963
Posted By Wobin
The top ESO lua coding addon tip I can offer is...

The top ESO lua coding addon tip I can offer is

Download and learn how to use Zgoo
Forum: General Authoring Discussion 05/27/14, 09:06 AM
Replies: 12
Views: 12,963
Posted By Wobin
But for all of this, why minify anything? People...

But for all of this, why minify anything?

People aren't downloading the lua on the fly, the length of your variable names aren't going to affect load by any significant amount. None of the...
Forum: General Authoring Discussion 05/27/14, 08:36 AM
Replies: 12
Views: 12,963
Posted By Wobin
Is there any reason you need to use minified...

Is there any reason you need to use minified code?

Technically, if you avoid using globals, your minified code should be fine. But you're preventing anyone else from learning from what you do, or...
Forum: Tutorials & Other Helpful Info 05/26/14, 08:10 PM
Replies: 7
Views: 9,699
Posted By Wobin
I feel we're running into a "correlation does not...

I feel we're running into a "correlation does not imply causation" issue here.
Forum: General Authoring Discussion 05/26/14, 01:51 AM
Replies: 26
Views: 20,191
Posted By Wobin
If all you're doing is registering and...

If all you're doing is registering and unregistering event handlers, don't stress the EVENT_PLAYER_ACTIVATED repetitiveness. It's definitely not fired as often as an OnUpdate, and isn't too hard on...
Forum: Site help, bugs, suggestions/questions 05/22/14, 01:30 AM
Replies: 2
Views: 1,370
Posted By Wobin
[Suggestions] Subscribe All button for addon comments

Could we have, for the authors some way to add all comments to all addons to the email subscription? Current method is one by one. Or perhaps have the comments auto add to the email feed on option...
Showing results 1 to 25 of 78