Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: sirinsidiator
Forum: Class Discussions 09/17/24, 04:50 AM
Replies: 2
Views: 697
Posted By sirinsidiator
As a NB main of 10 years I completely understand...

As a NB main of 10 years I completely understand your frustration, however this forum is only read by UI devs, so posting it here won't do much. You should add your voice to the official feedback...
Forum: Tutorials & Other Helpful Info 09/12/24, 09:49 AM
Replies: 1
Views: 2,760
Posted By sirinsidiator
Update 44 (Version 10.2)

The PTS cycle for the next base game update (https://www.elderscrollsonline.com/en-us/news/post/66701) will begin on Monday.

Notable Changes

New API Version: 101044
Major changes to battlegrounds...
Forum: AddOn Help/Support 09/10/24, 09:01 AM
Replies: 21
Views: 9,684
Posted By sirinsidiator
Pretty much yes. You can't even see what other...

Pretty much yes. You can't even see what other addons are doing when you look at the timeline:
https://i.imgur.com/JEMBQpn.png
Each of these big blocks is a frame where EPT takes too long. The tiny...
Forum: AddOn Help/Support 09/10/24, 04:54 AM
Replies: 21
Views: 9,684
Posted By sirinsidiator
Looking at the file, it's really...

Looking at the file, it's really ExoYsProcSetTimer that is causing the fps drop. More specifically it looks like the activeTimerList does not get cleaned up properly (or rather the only code where...
Forum: AddOn Help/Support 09/09/24, 01:07 PM
Replies: 21
Views: 9,684
Posted By sirinsidiator
Memory usage does not indicate whether an addon...

Memory usage does not indicate whether an addon has an impact on your fps. An addon could use 20GB of memory and do nothing with it, resulting in no impact on fps. The more important metric is...
Forum: AddOn Search/Requests 09/02/24, 05:11 AM
Replies: 7
Views: 6,842
Posted By sirinsidiator
Another way that would not require any addons is...

Another way that would not require any addons is to create a guild named "ready to rp" or similar and when you want to RP you put on the guild tabard. But you'd need to have a free guild slot, enough...
Forum: General Authoring Discussion 08/31/24, 05:56 PM
Replies: 6
Views: 8,798
Posted By sirinsidiator
To add to Dolgubon's already correct answers: Is...

To add to Dolgubon's already correct answers:
Is deferred initialization feasible for most addons?

Yes, you can defer the initialization code for any addon if you wish so. The bigger question is if...
Forum: General Authoring Discussion 08/21/24, 04:53 AM
Replies: 9
Views: 8,239
Posted By sirinsidiator
A zone change does not reload the Lua VM, so you...

A zone change does not reload the Lua VM, so you cannot change your addons there. In order to change which addons are loaded you need to restart Lua, which only happens on login or when using...
Forum: AddOn Help/Support 08/19/24, 01:08 PM
Replies: 21
Views: 15,956
Posted By sirinsidiator
That's unrelated to MM. Just update AGS to the...

That's unrelated to MM. Just update AGS to the version I just uploaded and it should work.
Forum: Wish List 08/13/24, 01:33 PM
Replies: 2
Views: 17,938
Posted By sirinsidiator
Keep in mind that precise ways to get information...

Keep in mind that precise ways to get information about damage sources were intentionally removed by ZOS in the past, over privacy concerns by players, as well as some addons going above and beyond...
Forum: AddOn Search/Requests 08/01/24, 07:55 AM
Replies: 3
Views: 5,457
Posted By sirinsidiator
Try...

Try https://www.esoui.com/downloads/info2290-NTakDialog.html
It allows to customize a lot of things about dialogs and seems to have a gamepad option in beta since 2 versions ago.
Forum: General Authoring Discussion 07/12/24, 04:46 AM
Replies: 4
Views: 12,327
Posted By sirinsidiator
That's most likely a timing issue. Calling...

That's most likely a timing issue.

Calling LibTimer:Start() directly will look up the global variable then and there.
Assigning LibTimer to a local LT and then calling LT:Start() right in the same...
Forum: Tutorials & Other Helpful Info 07/03/24, 01:12 PM
Replies: 4
Views: 23,641
Posted By sirinsidiator
Update 43 (Version 10.1)

The PTS cycle for the next base game update (https://www.elderscrollsonline.com/en-us/news/post/66331) has started.

Notable Changes

New API Version: 101043
New housing tours feature in activity...
Forum: General Authoring Discussion 06/17/24, 02:39 PM
Replies: 9
Views: 12,578
Posted By sirinsidiator
In that case it could suffer from the issue as...

In that case it could suffer from the issue as described, since AGS may have virtually selected a different guild than the game api.
But as I said. That's only the case IF there is some other addon...
Forum: General Authoring Discussion 06/16/24, 01:31 PM
Replies: 9
Views: 12,578
Posted By sirinsidiator
No. AGS on it's own will always return the...

No. AGS on it's own will always return the correct set of guildName and id.

What I mean is that if some other addon replaces only one of these functions and does not properly call the replacement...
Forum: General Authoring Discussion 06/16/24, 08:41 AM
Replies: 9
Views: 12,578
Posted By sirinsidiator
AwesomeGuildStore replaces both...

AwesomeGuildStore replaces both GetSelectedTradingHouseGuildId and GetCurrentTradingHouseGuildDetails in order to be able to show data independently from the actually selected guild without rewriting...
Forum: Dev Tools 06/11/24, 03:20 PM
Replies: 6
Views: 15,088
Posted By sirinsidiator
Ahem. Hello guys? Did you check who's maintaining...

Ahem. Hello guys? Did you check who's maintaining the addon? Last time I checked, that guy was still active and the addon was working fine... ;)
(Although I do have to admit that I use merTorchbug...
Forum: Lua/XML Help 06/11/24, 10:38 AM
Replies: 2
Views: 4,099
Posted By sirinsidiator
No. While the horizontal camera axis has a two...

No. While the horizontal camera axis has a two settings CAMERA_SETTING_THIRD_PERSON_HORIZONTAL_OFFSET and CAMERA_SETTING_THIRD_PERSON_HORIZONTAL_POSITION_MULTIPLIER, the vertical axis only has...
Forum: AddOn Search/Requests 06/11/24, 10:32 AM
Replies: 6
Views: 7,814
Posted By sirinsidiator
Nope. The only api we have for moving the third...

Nope. The only api we have for moving the third person camera towards the player is CameraZoomIn and once you zoom in far enough, you get automatically locked into first person view.
Forum: AddOn Search/Requests 06/10/24, 12:12 PM
Replies: 6
Views: 7,814
Posted By sirinsidiator
Impossible. like Dolgubon says, addons cannot...

Impossible.
like Dolgubon says, addons cannot effect that.
Forum: General Authoring Discussion 06/10/24, 05:26 AM
Replies: 14
Views: 12,573
Posted By sirinsidiator
why check for type(line) ~= "nil" when you can...

why check for type(line) ~= "nil" when you can just check for line ~= nil? there is only one value that can be of type nil, so it doesn't make much sense to call a function first to get the type...
Forum: General Authoring Discussion 06/08/24, 03:14 PM
Replies: 14
Views: 12,573
Posted By sirinsidiator
You are correct about that. Lua's string.format...

You are correct about that. Lua's string.format function is very low level and has no knowledge about fonts, typesetting and everything else that's going on in something as high level as the ESO UI....
Forum: Lua/XML Help 05/29/24, 04:18 AM
Replies: 5
Views: 5,449
Posted By sirinsidiator
Do you mean you are creating new markers every...

Do you mean you are creating new markers every update? If that's the case, please be aware that controls, once created are never destroyed. Meaning you cannot discard them without creating a memory...
Forum: AddOn Help/Support 05/02/24, 09:03 AM
Replies: 45
Views: 24,510
Posted By sirinsidiator
I've yet to see anyone actually demonstrate that...

I've yet to see anyone actually demonstrate that the guild history cache is responsible for the load times. All I've seen so far is some wild claims without any evidence that shows it's not just a...
Forum: Wish List 04/16/24, 05:12 AM
Replies: 12
Views: 19,510
Posted By sirinsidiator
Oh nice. I know it's not compression related, but...

Oh nice. I know it's not compression related, but still somewhat on topic, so when you are looking into the saved vars, could we please also get an option to have it save string keys in alphabetic...
Showing results 1 to 25 of 500