Thread Tools Display Modes
11/23/15, 04:48 PM   #1
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
[outdated] unique effectId's

It would be nice to have some way to identify similar "effects" of different ranks. As it stands in the game effects do NOT always have unique names so we can not tell them apart by effect name. The abilityId's are unique, but each time an ability ranks up its abilityId and the abilityId's of each effect we receive from it changes.
For example, sorcerer ability:
Rank 1 (I have no idea what the abilityId's are, this is just an example)
Lightning Form: abilityId = 1234
Secondary Effects from the ability:
Major Ward: abilityId = 1255
Major Resolve: abilityId = 1265
Rank 2
Lightning Form: abilityId = 1246
Secondary Effects from the ability:
Major Ward: abilityId = 1268
Major Resolve: abilityId = 1273
This makes it impossible to keep track of effects as they are ranked up without updating the abilityId information which can only be done via user interaction.
For example, BuffTracker allows users to set an effect as a buff or proc alert so that the icon will be displayed on the screen whenever they gain or loose the buff. However since abilityId's change each time they are ranked it is impossible to know that the "new" abilityId (for a new rank of the effect) is the same effect as the previous abilityId they set as a buff/proc alert.


It would be nice to have some way to know that two abilityId's represent different ranks of the same effect by examining the abilityId. Perhaps some kind of unique effectId could be used ?
Lua Code:
  1. local effectId = GetEffectId(integer abilityId)

Last edited by circonian : 11/23/15 at 05:26 PM.
 

ESOUI » Developer Discussions » Wish List » [outdated] unique effectId's


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off