Forum: AddOn Search/Requests
07/19/20, 09:07 PM
|
Replies: 5
Views: 961
|
Forum: General Authoring Discussion
06/10/20, 11:42 AM
|
Replies: 8
Views: 1,045
It would help to post the real contents of...
It would help to post the real contents of MakingTable.lua and MyAddon.xml, assuming they aren't stupidly large files. There are some interactions which aren't well explained in the ESO lua world...
|
Forum: AddOn Help/Support
05/15/20, 09:49 PM
|
Replies: 5
Views: 1,014
You'll have to do some troubleshooting...
You'll have to do some troubleshooting yourself.
Turn off addons until the issue stops, then verify that the one addon indeed causes the message spamming. Then post about it on the Addon page or...
|
Forum: AddOn Search/Requests
05/06/20, 07:15 PM
|
Replies: 19
Views: 2,807
|
Forum: Lua/XML Help
04/30/20, 10:39 AM
|
Replies: 24
Views: 4,525
You might be right, but:
His global scope...
You might be right, but:
His global scope control variable is nil. As far as we (and the author) can see, there isn't a typo.
The XML is loaded after the lua
The lua binds to ADD_ON_LOADED before...
|
Forum: Lua/XML Help
04/30/20, 10:13 AM
|
Replies: 24
Views: 4,525
|
Forum: Lua/XML Help
04/30/20, 10:01 AM
|
Replies: 24
Views: 4,525
Yeah, I saw some of your back and forth, but I...
Yeah, I saw some of your back and forth, but I was primarily answering the original issue he was having.
I was honestly a little surprised that the event appears to fire before the entire addon is...
|
Forum: Lua/XML Help
04/30/20, 09:20 AM
|
Replies: 24
Views: 4,525
I think your issue is related to the somewhat...
I think your issue is related to the somewhat confusing process Addons go through while the game is loading. There are a couple key points to consider.
Each xml element of your code has to be...
|
Forum: Bug Reports
04/20/20, 08:37 AM
|
Replies: 3
Views: 2,685
|
Forum: AddOn Help/Support
04/08/20, 03:43 PM
|
Replies: 2
Views: 774
|
Forum: AddOn Search/Requests
02/10/20, 10:56 PM
|
Replies: 2
Views: 1,554
The good news is that such a feature should be...
The good news is that such a feature should be possible and relatively easy to do with addons.
The bad news is it's a pretty niche request. Maybe look for an addon that already adds functionality...
|
Forum: AddOn Search/Requests
05/25/19, 06:37 PM
|
Replies: 1
Views: 1,564
The main issue I can see is that addons can't...
The main issue I can see is that addons can't save data to files other than in your Saved Variables folder. So in order to process your data we would likely have to make a standalone program to...
|
Forum: AddOn Help/Support
04/18/19, 06:31 AM
|
Replies: 4
Views: 819
|
Forum: Wish List
04/17/19, 04:15 PM
|
Replies: 15
Views: 4,931
|
Forum: Wish List
04/13/19, 07:02 AM
|
Replies: 15
Views: 4,931
|
Forum: General Authoring Discussion
04/11/19, 06:26 AM
|
Replies: 15
Views: 3,339
I believe scraping the screen to automate...
I believe scraping the screen to automate something in game would be against TOS. Ultimately the issue I see with this new "addon" would be using an external program to automate functions in game. I...
|
Forum: General Authoring Discussion
04/10/19, 06:22 AM
|
Replies: 15
Views: 3,339
|
Forum: General Authoring Discussion
04/09/19, 05:53 PM
|
Replies: 15
Views: 3,339
|
Forum: Wish List
04/05/19, 02:49 PM
|
Replies: 15
Views: 4,931
I just want a feature that allows the scope of...
I just want a feature that allows the scope of what addons can do to improve. My custom text links request pretty much got address briefly by Chip and then buried, so now here I am lol.
I was mostly...
|
Forum: Wish List
04/05/19, 12:31 PM
|
Replies: 15
Views: 4,931
[open] Group Data Sharing
I'm not sure whether this is a security or performance issue, but I would very much like a feature that allows grouped players to directly send binary data to each other.
Probably the best way to do...
|
Forum: Wish List
03/28/19, 06:54 PM
|
Replies: 5
Views: 3,281
|
Forum: Wish List
03/28/19, 03:38 PM
|
Replies: 5
Views: 3,281
Yes, the Lua interpreter in ESO does support a...
Yes, the Lua interpreter in ESO does support a "shrunken" format. The language grammar itself does not set any requirements on the presence of whitespace beyond using a single whitespace character to...
|
Forum: AddOn Search/Requests
03/26/19, 06:01 AM
|
Replies: 7
Views: 1,691
|
Forum: Lua/XML Help
03/20/19, 04:19 PM
|
Replies: 3
Views: 4,051
|
Forum: Tutorials & Other Helpful Info
03/06/19, 04:35 PM
|
Replies: 1
Views: 5,909
You are probably looking for:
os.date("%X",...
You are probably looking for:
os.date("%X", timestamp) -- returns formatted time string
I'm pretty sure if you plug in a timestamp difference, you'll still get what you are looking for. You can read...
|