Download
(12 Kb)
Download
Updated: 10/29/21 07:43 AM
Pictures
File Info
Compatibility:
Waking Flame (7.1.5)
Updated:10/29/21 07:43 AM
Created:06/20/18 05:41 AM
Monthly downloads:1,481
Total downloads:268,693
Favorites:212
MD5:
Categories:Casting Bars, Cooldowns, Combat Mods
Light Attack Helper  Popular! (More than 5000 hits)
Version: 4.2
by: kafeijao [More]
Light Attack Helper is a tool that helps you track your light attacks, it does this by incrementing a counter each time you actually hit a light attack.

Changelog
Version 4.2
  • Fixed not working for nightblades on the german localization.
Version 4.1
  • Fixed for the german localization.
Version 4.0
  • Fixed the addon for the current patch (Sorry for the delay).
  • Added a debug mode, check bellow how to use if you are having issues.
Version 3.5 - IMPORTANT CHANGE
This addon depends on the following libraries:
When you start to do light attack weaving normally you either do it too fast or too slow, the ideal is doing as fast as possible but still having the light attacks to register, this is where this addon comes in handy, to help you finding the sweet spot.

Since these days the light attacks are the most damaging ability, one of the best ways to improve dps is actually to perform better your light attack weaving. Light attack weaving is always using a light attack in between your skill abilities, this paired with animation canceling of the light attacks makes your damage spike, you can check on youtube for videos about Elder Scrolls Online animation canceling for further information.

The la/s is the light attacks per second from a fight. So if you want to push yourself try to increase this number as much as possible in your fights. I am tracking the light attacking information from the server, so the times will be influenced by your latency(ping), and the latency(ping) is not very constant so you might find a bit of floating values.

You can use /laprintfull to see the statistics from the parse, for example the max and min values to see if your parse was falwless, for example if you get a minimum lower than 800ms probably it means that you did 2 light attacks without a skill in between, and if the maximum is higher than 1800 probably means that you used two skills without a light attack in between (This of course depends on the skills used, as channeled skills will have a much longer light attack time in between).

Commands:
  • /laprint - Prints the last combat's light attack / s ratio.
  • /laprintfull - Prints the last combat's full statisctics.
  • /lapost - Posts to the chat the last combat's light attack / s ratio (send to people).
  • /lapostfull - Posts to the chat the last combat's full statisctics (send to people)
  • /lareset - Resets the light attack counter to 0.


Notes:
  1. The counter for ranged attacks will increment as soon as you shoot the light attack (if it knows it will hit) instead of when it actually hits, if it was on actual hit it would count the light attack after you barswap (if you do bar swap animation cancel) which feels a bit weird if you have the option to reset on barswap.
  2. The addon will not detect medium attacks from lightning and restoration staves, even if you enable counting the Heavy Attacks in the settings.


DEBUG
If the addon is not counting a Light or Heavy Attacks for a particular weapon, or at all (maybe because a different language) follow this instructions and post it in the comments.
  1. Enable Debug Mode in the addon settings (it's at the bottom of the settings).
  2. Type /reloadui in your chat to clear the chat.
  3. Using an attack dummy in a player house, perform a single Heavy or Light attack (the one that is not counting).
  4. You will see a bunch of information in the chat. Take a screenshot all the info (you might need several screenshots if it's a lot of info).
  5. Post the screenshot(s) in the comments section AND provide the information: Type of weapon (eg: Duel Wield), Game Language (eg: English), and a brief description of the problem.

Thanks
Thanks @wambo for implementing LibChatMessage and making the libraries external.
Thanks WalterMort, FAR747, Beltroniko, mjbc, and nogetrandom for helping in the comments in my absence.
Thanks Anubis for providing the fix for the german localization.
Thanks Saenic for providing the fix for nightblades to work on german localization.
Version 4.2
+ Fixed german localization on nightblades.

Version 4.1
+ Fixed the strings for the german language.

Version 4.0
+ Fixed the ability names checking for the new DLC.
+ Fixed the count on Heavy attacks to not proc a single time.
+ Added a debug mode to be able to get logs from the users in case of issues.
+ API Bump

Version 3.5
+ Removed included libraries, now you need to install LibAddonMenu-2.0 and LibChatMessage libraries.
+ Implemented LibChatMessage (by @wambo)
+ API Bump

Version 3.4
+ Code cleanup and api Bump (I think xd).

Version 3.3
+ Code cleanup and api Bump.

Version 3.3
+ Fixed one issue where light attacks were not being detected on ranged attacks.

Version 3.2
+ Fixed one issue that happened when grouped.


Version 3.1
  • Added the display light attacks per second.
  • Changed the settings menu for better hide/show components.
  • Added the command /laprint /laprintfull /lapost /lapostfull to display statistics from the last fight.
  • Added event filters to improve performance.

Version 3.0
  • Added the display of the milliseconds between each light attack.
  • Added the option to hide and set the size for the milliseconds part on the settings.
  • Added the command /laprint to display statistics from the last fight.

Version 2.2
  • Added support for German and French clients. Maybe Japanese aswell (needs testing)

Version 2.1
  • Added font options on settings (Font, size, border, and color).
Optional Files (1)
File Name
Version
Size
Author
Date
Type
3.6
10kB
07/17/21 03:05 AM
Patch


Archived Files (11)
File Name
Version
Size
Uploader
Date
4.1
12kB
kafeijao
10/10/21 11:49 AM
4.0
12kB
kafeijao
10/09/21 05:39 AM
3.5
11kB
kafeijao
05/22/20 02:29 PM
3.4
56kB
kafeijao
03/11/19 09:23 PM
3.3
56kB
kafeijao
10/10/18 05:02 PM
3.2
56kB
kafeijao
10/10/18 03:49 PM
3.1
56kB
kafeijao
10/10/18 09:20 AM
3.0
53kB
kafeijao
07/13/18 08:37 AM
2.2
51kB
kafeijao
07/05/18 07:33 PM
2.1
49kB
kafeijao
07/03/18 01:08 PM
2.0
49kB
kafeijao
06/20/18 05:41 AM


Post A Reply Comment Options
Unread 10/28/21, 11:19 AM  
Saenic
 
Saenic's Avatar
AddOn Author - Click to view AddOns

Forum posts: 7
File comments: 129
Uploads: 2
You Nightblade class check doesn't work for non english languages
Code:
LightAttackHelper.isPlayerNightblade = GetUnitClass("player") == "Nightblade"
It works if you change it to work language independant
Code:
LightAttackHelper.isPlayerNightblade = GetUnitClassId("player") == 3
Report comment to moderator  
Reply With Quote
Unread 10/29/21, 07:45 AM  
kafeijao
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 54
Uploads: 7
Originally Posted by Saenic
You Nightblade class check doesn't work for non english languages
Code:
LightAttackHelper.isPlayerNightblade = GetUnitClass("player") == "Nightblade"
It works if you change it to work language independant
Code:
LightAttackHelper.isPlayerNightblade = GetUnitClassId("player") == 3
Ooh thanks for the comment and fix!
Report comment to moderator  
Reply With Quote
Unread 03/05/23, 04:34 PM  
Razou

Forum posts: 0
File comments: 1
Uploads: 0
Lightbulb additional features

Hello
Would it be possible to add sounds at the start of the light attack, the game already does this but the sound is relatively hard to distinguish.
Last edited by Razou : 03/05/23 at 04:34 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: