lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Class Specific (sub-categories) > Warden


Post A Reply
Author Comments Comment Options
Unread 07-16-2020, 07:27 PM  
gildhur
The Wary

Forum posts: 0
File comments: 5
Uploads: 0
Not sure if anyone is checking this anymore, but I just discovered it and thought I'd make a suggestion.

The black default background for unused spaces in the builder is really distracting. Is there any way to make the background transparent, or if necessary for visibility to just have a standard LotRO UI outline?

Either way, LOVE the plugin! It's made me want to play my Warden again, which I haven't done since RoI.
gildhur is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 12-24-2020, 12:33 AM  
JohnMHammer
The Indomitable
 
JohnMHammer's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 55
Uploads: 2
Great add on, thank you for it!

I really liked my Warden but I need my brain cells for work, I couldn’t dedicate so many of them to memorizing gambit formulas. So I didn’t play him much and when I did I either used just a few gambits or had post-it notes stuck all over my monitor. But since I tried this addon I began enjoying my Warden much more. There’s still more rote stuff to remember than I’d prefer but this addon has made it easier to keep the bulk of it offloaded from my wetware yet still getting to use more of my Warden’s gambits. I’m even starting to just build gambits without even using this addon’s hints all the time so it’s been a good learning tool.

Great job! Please keep it working as LOTRO changes over time.
JohnMHammer is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-08-2021, 01:21 AM  
JohnMHammer
The Indomitable
 
JohnMHammer's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 55
Uploads: 2
Left-to-right rather than right-to-left?

Is there any way to get the gambit builders in the quickslots to populate from left to right rather than right to left?

For example, if I have a 2-builder gambit selected the two builders will populate the 2 slots furthest to the right. The first 3 slots are empty.

I'd like to be able to populate the slots from left to right so that a 2-builder gambit would fill the 2 slots furthest to the left leaving the last 3 slots empty. This would permit me to set the WE2 Quickslots bar directly above or below my UI's default gambit panel so that I can use WE2 to tell me what I need to punch in to get the gambit I want and the gambit panel will match the WE2 bar assuming I punch in the correct builders.

Thanks again for this very useful plugin!
JohnMHammer is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-29-2021, 01:12 PM  
Stever1388
The Undying
Interface Author - Click to view interfaces

Forum posts: 33
File comments: 122
Uploads: 10
Quote:
Not sure if anyone is checking this anymore, but I just discovered it and thought I'd make a suggestion.

The black default background for unused spaces in the builder is really distracting. Is there any way to make the background transparent, or if necessary for visibility to just have a standard LotRO UI outline?

Either way, LOVE the plugin! It's made me want to play my Warden again, which I haven't done since RoI.
I haven't really been playing LOTRO or keeping up with these plugins. If I find some time, I'll take a look, but if someone else wants to patch this plugin (or upload a completely new version), they are free to do so.
Stever1388 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-29-2021, 01:14 PM  
Stever1388
The Undying
Interface Author - Click to view interfaces

Forum posts: 33
File comments: 122
Uploads: 10
Re: Left-to-right rather than right-to-left?

Quote:
Is there any way to get the gambit builders in the quickslots to populate from left to right rather than right to left?
If I find some time to take a look, I'll see what I can do. But if anyone else wants to fix it, they are free to do so.
Stever1388 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-31-2021, 09:03 AM  
Evereus
The Wary

Forum posts: 0
File comments: 31
Uploads: 0
Would be great, if someone can update it to make it usable...
Evereus is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-24-2021, 12:35 AM  
JohnMHammer
The Indomitable
 
JohnMHammer's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 55
Uploads: 2
Quote:
Would be great, if someone can update it to make it usable...
The mod is perfectly "usable" as it is. I use it with my Warden toons every time I play them. Did so just yesterday.

Is there something specific that isn't working for you? I am not the author but perhaps I can help.
JohnMHammer is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-23-2022, 07:57 AM  
Limbadon
The Wary

Forum posts: 0
File comments: 13
Uploads: 0
Tooltip at Gambit bars

Hi, is it possible to switch on tooltips when i mouseover the gambit bar to see the effect of the gambits?
Limbadon is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-22-2023, 02:40 PM  
JohnMHammer
The Indomitable
 
JohnMHammer's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 55
Uploads: 2
Red face u35 New Gambits

LOTRO update patch 35 introduced 6 new gambits (actually 12 since there are ranged and melee versions of each):

Deflection (Assailment and Determination versions): 3-2-1
Spear of Fate/Javelin of Fate: 3-1-3-1-3
Cauterizing Steel/Ranged Cauterizing Steel: 1-2-1-2-1
Unseen Strikes/Ranged Unseen Strikes: 1-3-1-3-1
Readied Blade (Assailment and Determination versions): 2-3-1
Shield Up (Assailment and Determination versions): 2-1-3

WardenEase2 continues to work great, these new gambits simply have to be added to the __init__.lua file. I added them to the end of the English list which begins with...
Code:
else
  SDRPlugins.WardenEase2.Gambits["Adroit Manoeuvre"] = {1,3,2,1}
...and ends with...
Code:
  SDRPlugins.WardenEase2.Gambits["Warden's Triumph"] = {1,3,2,1,3}
The exact lines added are:
Code:
  SDRPlugins.WardenEase2.Gambits["Deflection"] = {3,2,1}
  SDRPlugins.WardenEase2.Gambits["Ranged Deflection"] = {3,2,4}
  SDRPlugins.WardenEase2.Gambits["Spear of Fate"] = {3,1,3,1,3}
  SDRPlugins.WardenEase2.Gambits["Javelin of Fate"] = {3,4,3,4,3}
  SDRPlugins.WardenEase2.Gambits["Cauterizing Steel"] = {1,2,1,2,1}
  SDRPlugins.WardenEase2.Gambits["Ranged Cauterizing Steel"] = {4,2,4,2,4}
  SDRPlugins.WardenEase2.Gambits["Unseen Strikes"] = {1,3,1,3,1}
  SDRPlugins.WardenEase2.Gambits["Ranged Unseen Strikes"] = {4,3,4,3,4}
  SDRPlugins.WardenEase2.Gambits["Readied Blade"] = {2,3,1}
  SDRPlugins.WardenEase2.Gambits["Ranged Readied Blade"] = {2,3,4}
  SDRPlugins.WardenEase2.Gambits["Shield Up"] = {2,1,3}
  SDRPlugins.WardenEase2.Gambits["Ranged Shield Up"] = {2,4,3}
There is also an equivalent list for the German language client. I do not speak German, I just used Google Translate. Here are the lines to add to the bottom of the German gambit list, right under this line:
Code:
  SDRPlugins.WardenEase2.Gambits["Triumph des H\195\188ters"] = {1,3,2,1,3}
Code:
  SDRPlugins.WardenEase2.Gambits["Ablenkung"] = {3,2,1}
  SDRPlugins.WardenEase2.Gambits["Fernablenkung"] = {3,2,4}
  SDRPlugins.WardenEase2.Gambits["Speer des Schicksals"] = {3,1,3,1,3}
  SDRPlugins.WardenEase2.Gambits["Fernkampfspeer des Schicksals"] = {3,4,3,4,3}
  SDRPlugins.WardenEase2.Gambits["Kauterisieren von Stahl"] = {1,2,1,2,1}
  SDRPlugins.WardenEase2.Gambits["Fernkauterisierender Stahl"] = {4,2,4,2,4}
  SDRPlugins.WardenEase2.Gambits["Unsichtbare Schläge"] = {1,3,1,3,1}
  SDRPlugins.WardenEase2.Gambits["Unsichtbare Fernschläge"] = {4,3,4,3,4}
  SDRPlugins.WardenEase2.Gambits["Fertige Klinge"] = {2,3,1}
  SDRPlugins.WardenEase2.Gambits["Fernkampfbereite Klinge"] = {2,3,4}
  SDRPlugins.WardenEase2.Gambits["Schild hoch"] = {2,1,3}
  SDRPlugins.WardenEase2.Gambits["Fernkampfschild hoch"] = {2,4,3}
I have tested this with the English client and it works as expected: The new gambits are added and display sorted among the other gambits using whatever scheme WardenEase2 uses for sorting. I did not test with the German client. If I got the translations wrong let me know and I will fix them – but you can blame Google, not me!

I plan to upload a replacement __init__.lua file which can be applied as a "patch" to an existing installation of WardenEase2. Here's hoping the author returns and updates this fantastic plugin himself, I literally would not play my Warden without it and I really love playing my Warden! So I'm very happy this plugin exists and was so easy to update for the new gambits in the u35 patch.

Last edited by JohnMHammer : 03-23-2023 at 11:08 PM.
JohnMHammer is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-22-2023, 03:02 PM  
JohnMHammer
The Indomitable
 
JohnMHammer's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 55
Uploads: 2
Patch File Uploaded

I have uploaded the patched file and it is available here on LotroInterface.com:
https://www.lotrointerface.com/downl...fo.php?id=1213
JohnMHammer is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-10-2023, 08:48 AM  
Grimjouw
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Icons scale

Hello! Is it possible to make icons bigger?
Grimjouw is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-18-2023, 09:18 PM  
JohnMHammer
The Indomitable
 
JohnMHammer's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 55
Uploads: 2
Re: Icons scale

As far as I know, there is no user-accessible option to change the scale nor do the elements of the plugin respect the universal scaling of the UI.
JohnMHammer 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 07:31 AM.


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