lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Other


Post A Reply
Author Comments Comment Options
Unread 04-30-2022, 09:40 AM  
gjpc
The Indomitable
 
gjpc's Avatar
Interface Author - Click to view interfaces

Forum posts: 11
File comments: 86
Uploads: 4
Quote:
I've quiclky checked the 4.8.6 fr.lua

Unfortunately, fellowship chat shortcut is not fixed, orc damage type is still missing, light damage french mistranslation into "légère" issue is not fixed.

This is a pity since I published those fixes 2 years ago in the comments, and also suggested an overall deeper translation since 2016

My file is probably not perfect but however more functional than the present one.
mieux vaut tard que jamais, n'es pas d'accord ?
gjpc is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-30-2022, 07:45 AM  
Adra
The Undying
 
Adra's Avatar
Interface Author - Click to view interfaces

Forum posts: 171
File comments: 678
Uploads: 13
Hello,

I've quiclky checked the 4.8.6 fr.lua

Unfortunately, fellowship and tribe chat shortcuts are not fixed, orc damage type is still missing, light damage french mistranslation into "légère" issue is not fixed.

This is a pity since I published those fixes 2 years ago in the comments, and also suggested an overall deeper translation since 2016

My file is probably not perfect but however more functional than the present one.

https://drive.google.com/file/d/1WS4...ew?usp=sharing

Last edited by Adra : 04-30-2022 at 10:19 AM.
Adra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-24-2022, 06:09 PM  
gjpc
The Indomitable
 
gjpc's Avatar
Interface Author - Click to view interfaces

Forum posts: 11
File comments: 86
Uploads: 4
Re: Re: Back after a Hiatus

Quote:
No need to apologise. We appreciate that such an addon is available to us, and we appreciate the time and effort you put into it. Welcome back

If you could add support for the new Brawler class... that would be epic
Thanks Xanthion! Your are very kind. I shall endeavor to brawl the code.
gjpc is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-24-2022, 07:43 AM  
Xanthion
The Wary

Forum posts: 0
File comments: 11
Uploads: 0
Re: Back after a Hiatus

Hi all,
I have been very absent from the Combat Analysis over the past year. I am back to playing after dropping ESO. Apologies, I'll try to pay more attention to the plugin starting now.

No need to apologise. We appreciate that such an addon is available to us, and we appreciate the time and effort you put into it. Welcome back

If you could add support for the new Brawler class... that would be epic
Xanthion is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-10-2022, 06:25 PM  
gjpc
The Indomitable
 
gjpc's Avatar
Interface Author - Click to view interfaces

Forum posts: 11
File comments: 86
Uploads: 4
Back after a Hiatus

Hi all,
I have been very absent from the Combat Analysis over the past year. I am back to playing after dropping ESO. Apologies, I'll try to pay more attention to the plugin starting now.

Last edited by gjpc : 04-10-2022 at 06:26 PM.
gjpc is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-06-2021, 02:33 PM  
bornfight
The Wary

Forum posts: 0
File comments: 43
Uploads: 0
Current Version 4.8.5

Bekomme Ich folgenden Fehler beim Hüter:

I get the following error with the Warden:

...he Lord of the Rings Online\Plugins\Darf\UI\util.lua:14: attempt to perform arithmetic on local 'red' (a nil value)

German Client
bornfight is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-23-2021, 08:44 PM  
Xanthion
The Wary

Forum posts: 0
File comments: 11
Uploads: 0
Thumbs up Re: Possible fix for Buff uptime percentages

I believe I found a fix for a part of Xanthion's issue (I and a friend of mine had that issue as well):

CombatAnalysis/Data/SummaryData/BuffData.lua

Line 114, where you see
Code:
function BuffData:CurrentDuration(timestamp)
    return self.duration+(self.durStart == nil and 0 or (timestamp-self.durStart));
end
Change the "nil" to "0", so that it is
Code:
function BuffData:CurrentDuration(timestamp)
    return self.duration+(self.durStart == 0 and 0 or (timestamp-self.durStart));
end
Thank you Brolad for the tip. It did correct the issue of seeing xxxM% and so on. Now it correctly shows the percentage in accordance to time active vs time spent in battle.

Any tips on how to broadcast the number of times used to chat? The option must be there as CombatAnalysis shows it in its windows, but just doesn't report it to chat. I would try this myself, but I have no experience with lua.

Thank you again!
Xanthion is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-08-2021, 06:52 AM  
Brolad
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Possible fix for Buff uptime percentages

I believe I found a fix for a part of Xanthion's issue (I and a friend of mine had that issue as well):

CombatAnalysis/Data/SummaryData/BuffData.lua

Line 114, where you see
Code:
function BuffData:CurrentDuration(timestamp)
    return self.duration+(self.durStart == nil and 0 or (timestamp-self.durStart));
end
Change the "nil" to "0", so that it is
Code:
function BuffData:CurrentDuration(timestamp)
    return self.duration+(self.durStart == 0 and 0 or (timestamp-self.durStart));
end

Last edited by Brolad : 04-08-2021 at 06:53 AM.
Brolad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-04-2021, 03:56 AM  
Xanthion
The Wary

Forum posts: 0
File comments: 11
Uploads: 0
Buffs Component of Combat Analysis

Hello

I am brand new to this forum and have recently started looking into plugins for LOTRO.

I have been using CombatAnalysis now for a little while and I recently updated the database for buffs to include all of the Warden's trivial buffs. This is to track how often I use/rotate skills and to see if I am effectively utilising the gambits chains for defence.

1 thing I would like to do is link in chat the number of times that a buff/buffs was/were applied/reapplied during combat instead of just the default uptimer on buffs, which, gives me some reading like 900M% for a 20sec fight. Is there a way or could an option be integrated into CombatAnalysis to link in chat the number of times a buff, or even a skill was used?

Thank you.

I do love using CombatAnalysis. I haven't been able to successfully utilise the debuffs component yet, as I cannot get some of the Warden's debuffs to register.
Xanthion is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-16-2020, 08:28 PM  
PB.au
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
I've got a really weird error. The plugin loads and works properly for one of my characters (a level 30 alt). However it does not load for my max level char. when I type "plugins load combatanalysis" on this character the game outputs an error message in chat saying "unable to load combatanalysis".

Is there any individual character settings that can cause the plugin to not load?

I've tried disabling all other plugins.
PB.au is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-09-2020, 06:03 AM  
Adra
The Undying
 
Adra's Avatar
Interface Author - Click to view interfaces

Forum posts: 171
File comments: 678
Uploads: 13
Hi, untill there is a better french translation & parse code, could you embed the file I posted some time ago ? https://uptobox.com/xddzilqab0pq

Maybe it is not perfect and should have its parse code audited, however it fixes some issues : chat channels outputs (fellowship and kinship), light / orc / fell wrought damage types, etc.

Regards.
Adra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-22-2020, 03:45 PM  
gjpc
The Indomitable
 
gjpc's Avatar
Interface Author - Click to view interfaces

Forum posts: 11
File comments: 86
Uploads: 4
Quote:
Tried the usual, uninstall etc, any tips? Thank you <3
Not really. I just updated and ran my hunter, and everything is working fine.

Are you using the latest version?
gjpc is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-22-2020, 08:23 AM  
Mercurise
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Since the last update, I get the "Failed to load traits, reset and continue?" message/


It is recommended you unload the plugin now. You can attempt to check your traits file for errors:
"Documents\The_Lord_of_the_Rings_Online\PluginData \<UserName>\<Server>\<CharacterName>\CombatAnalysi sTraits.plugindata"

or

...e Rings Online\Plugins\CombatAnalysis\Utils\Misc.lua:487: attempt to index field '?' (a nil value)

Tried the usual, uninstall etc, any tips? Thank you <3
Mercurise is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-27-2020, 04:21 PM  
argonui
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Re Buffs able to be sent to buffbar?

argonui is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-26-2020, 09:28 PM  
gjpc
The Indomitable
 
gjpc's Avatar
Interface Author - Click to view interfaces

Forum posts: 11
File comments: 86
Uploads: 4
Re: Buffs able to be sent to buffbar?

Quote:
Is there a way to pass along the buffs put on friends to buffbars?
A long time ago, the ability to read even fellows stats was removed.

Quote:
also if you point me to the code, i'm willing to patch
https://github.com/gjpc/CombatAnalysis
gjpc is offline Report comment to moderator   Reply With Quote Reply With Quote
Post A Reply

 
Category Jump:
Search this Category:
 

All times are GMT -5. The time now is 06:01 PM.


Our Network
EQInterface | EQ2Interface | Minion | WoWInterface | ESOUI | LoTROInterface | MMOUI | Swtorui