lotrointerface.com
Search Downloads


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


Post A Reply
Author Comments Comment Options
Unread 11-08-2022, 10:43 AM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Re: move the buff window?

Quote:
Hello I can not move the window of the buff, it is located at the top left and I would like to move it, either with the SHIFT key, or ALT nothing works, thank you.
Thanks for asking! You can use your Reposition UI keyboard shortcut to move the MinstrelBuff II windows around. I've added screenshots to the Installation section of the notes above if you are uncertain how to do this.
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-08-2022, 09:28 AM  
magdalena001
The Wary

Forum posts: 2
File comments: 22
Uploads: 0
move the buff window?

Hello I can not move the window of the buff, it is located at the top left and I would like to move it, either with the SHIFT key, or ALT nothing works, thank you.
magdalena001 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-04-2022, 07:09 AM  
Edhelae
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Quote:
Thanks for letting me know about this, and for including the error message! I've put a fix in place for the next release.

It sounds like there's a problem with your save file. You can find it at:
C:\Users\[username]\Documents\The Lord of the Rings Online\PluginData\[account]\[server]\[character]\MinstrelBuff.plugindata.

Solution 1:

The easiest thing to do is get rid of this save file. You can rename it to MinstrelBuff.plugindata.bak to hide it from the plugin. The plugin will then recreate it the next time you load the plugin.

Solution 2:

Instead of that, if you're comfortable editing this file then find the line that starts with
Code:
["ThemeIndex"]
and set it to a known-good value like so:
Code:
["ThemeIndex"] = "1",
Solution 3:

If you're comfortable editing a plugin code file, you can instead add this to Settings.lua at line 56 to stop the error from happening again:
Code:
	-- Validate the Theme Range:
	local themeIndex = self.settingsTable["ThemeIndex"];
	if (themeIndex == nil or
		themeIndex < 1 or
		themeIndex > #CubePlugins.MinstrelBuffII.Themes.ThemeList) then
		themeIndex = 1;
		self.settingsTable["ThemeIndex"] = 1;
		wasSettingsFileCorrect = false;
	end
I hope this helps, and thanks again!

Thanks for those solutions, although I can't make it work !!

First, i dont have any minstrelbuffII files in my "C:\Users\[username]\Documents\The Lord of the Rings Online\PluginData\[account]\[server]\[character]"

So i can't change this file !
I tried the other solutions but can't find "ThemeIndex" in buffwindow file !

And i tried to do the 3rd one, by adding the text into setting, but not sure how to find the line 56 ^^" (should i count the number of written line? with or without the empty spaces? ^^')


Nonetheless, thank you for making this plugin !! Looking forward to make it work !! =DD
Edhelae is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-16-2022, 03:07 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Quote:
Thank you, I managed to launch the plug-in but it's not over yet ^^
Now when I'm using a balad, I got these :

"...ne\Plugins\CubePlugins\MinstrelBuffII\BuffWind ow.lua:572: attempt to index field 'balladEffectDisplays' (a nil value)"

"...ne\Plugins\CubePlugins\MinstrelBuffII\BuffWind ow.lua:551: attempt to get length of field 'balladEffectDisplays' (a nil value)"

It displays many times
Thanks for reporting that! I'm having trouble understanding why you are getting that error message. If you are willing and able, would you create a zip file of your Documents\The Lord of the Rings Online\Plugins\CubePlugins directory and send it to [email protected]? Please also send your save file at Documents\The Lord of the Rings Online\PluginData\[account]\[server]\[character]\MinstrelBuff.plugindata.

That should help me figure out exactly what's going on.
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-16-2022, 02:39 PM  
Witabinks
The Wary
 
Witabinks's Avatar

Forum posts: 0
File comments: 4
Uploads: 0
Thank you, I managed to launch the plug-in but it's not over yet ^^
Now when I'm using a balad, I got these :

"...ne\Plugins\CubePlugins\MinstrelBuffII\BuffWind ow.lua:572: attempt to index field 'balladEffectDisplays' (a nil value)"

"...ne\Plugins\CubePlugins\MinstrelBuffII\BuffWind ow.lua:551: attempt to get length of field 'balladEffectDisplays' (a nil value)"

It displays many times
Witabinks is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-14-2022, 03:41 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Quote:
I have this error:

...lugins\MinstrelBuffs\MinstrelBuffWindow\Setting s.lua:89: attempt to index local 'theme' (a nil value)
Hi there! It looks like you're trying to use the original MinstrelBuff plugin (https://www.lotrointerface.com/downl...strelBuff.html). The new supported version is MinstrelBuff II. Try that out and see if it fixes your problem.
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-14-2022, 02:04 PM  
Abaris
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
i hav this error:


...lugins\MinstrelBuffs\MinstrelBuffWindow\Setting s.lua:89: attempt to index local 'theme' (a nil value)
Abaris is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-13-2022, 04:50 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Re: German translation

Quote:
I'll try to help with the german translation.
Thank you!

Quote:
Do we still need those ascii-files in the archive?
I hope not. I forgot to remove or update them before releasing MinstrelBuff II, but they're not needed unless someone has a problem with the non-ASCII version.

Quote:
Strings_de.lua:
Great! I'll work on incorporating these.

Quote:
MinstrelEffects_de.lua:

At the end of the file, you need to change these strings because those functions doesn't work anymore.
Awesome, I'll check on these.

Quote:
Because I can't join the stream next week, I've posted a few questions/ideas on Twitter.
Got them, thanks!
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-12-2022, 03:49 PM  
Farothhen
The Wary
 
Farothhen's Avatar

Forum posts: 2
File comments: 95
Uploads: 0
German translation

Hello B4,

despite missing your stream frequently in the last weeks, I'll try to help with the german translation. Do we still need those ascii-files in the archive?

Strings_de.lua:

Code:
        ["DRAG_BAR_TITLE"] = "Selbstgespräch Tracker";
        ["MELODIC_INTERLUDE_TITLE"] = "Melodisches Interludium";

        ["SOLILOQUY_OF_SPIRIT_PATTERN"] = "wandte \".*Vorteil\" mit \"Selbstgespräch .* Geistes\" auf d[ie][en] (.*) an.";

        ["SPECIALIZATION_CHANGED"] = "Ihr habt diese Bonus%-Eigenschaft für Klassenspezialisierung erlangt: (.*)\n";

        ["WATCHER_OF_RESOLVE"] = "Der Wächter der Entschlossenheit.";
        ["SOLILOQUY_OF_SPIRIT"] = "Selbstgespräch des Geistes";

        ["EffectWindowOnlyVisibleInCombat"] = "Nur im Kampf sichtbar";
        ["ThemeIndex"] = "Theme auswählen:";
        ["SolilquyWindowUsed"] = "Benutze Selbstgespräch Tracker";
        ["CheckForSeriousBusiness"] = "Verstecke UI, wenn \"Mit etwas mehr Ernst\" aktiv";
        ["ShowWarSpeechTimers"] = "Zeige Kriegsrede-Timer";
        ["ShowMelodicInterlude"] = "Zeige Fenster von Melodisches Interludium";
        ["MelodicInterludeWidth"] = "Melodisches Interludium Fenster-Skalierung: %.1fx";
        ["MainWindowWidth"] = "Hauptfenster-Skalierung: %.1fx";

        ["SERIOUS_BUSINESS"] = "Mit etwas mehr Ernst";
MinstrelEffects_de.lua:

At the end of the file, you need to change these strings because those functions doesn't work anymore.

Code:
ValidWarSpeechSkillNames = {
	["Kriegsrede"] = true;
};

ValidMelodicInterludeNames = {
	["Melodisches Interludium"] = true;
};
Because I can't join the stream next week, I've posted a few questions/ideas on Twitter.
Farothhen is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-09-2022, 10:43 AM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Re: More than 3 anthems not working

Quote:
the anthem bar doesn't "automatically extend" as advertised after the 4th+ anthem. Is it just me?
I just did some testing by changing BuffWindow.lua line 25 to
Code:
self.nextAnthemEffectPlace = 3;
. (This causes the window to skip the first two anthem spaces, making it much easier to simulate having more than three anthems.)



Keep in mind that you will never have both the lesser and greater effect of Anthem I, Anthem II, or Anthem III. Activating the second of the pair results in a single combined effect. (So only takes one space.) Under the new system it's impossible to have more than 4 anthems effects active at one time.

I hope to add tracking of the personal effect from Resonance and Dissonance, so that would be a 5th anthem effect you could have.

If you do have a situation that results in more Anthem effects than spaces in your window, please let me know!

Last edited by b414213562 : 10-09-2022 at 10:44 AM.
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-09-2022, 01:24 AM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Re: More than 3 anthems not working

Quote:
Hi there,

I tested the new plugin (thank you, huge fan of the old one too) but after testing the new minstrel, the anthem bar doesn't "automatically extend" as advertised after the 4th+ anthem. Is it just me?
Hello! To help with testing, which anthems did you have activated? Did any of them come from another minstrel?
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-08-2022, 03:28 PM  
MrPacino
The Wary

Forum posts: 0
File comments: 3
Uploads: 0
More than 3 anthems not working

Hi there,

I tested the new plugin (thank you, huge fan of the old one too) but after testing the new minstrel, the anthem bar doesn't "automatically extend" as advertised after the 4th+ anthem. Is it just me?
MrPacino is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-30-2022, 08:06 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Quote:
Great news!

Did you integrate the change of Inspire Fellows, which adds a stack to the Inner Strength?
Not yet, but it's on the wish-list!
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-30-2022, 11:37 AM  
Farothhen
The Wary
 
Farothhen's Avatar

Forum posts: 2
File comments: 95
Uploads: 0
Great news!

Did you integrate the change of Inspire Fellows, which adds a stack to the Inner Strength?
Farothhen is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-29-2022, 10:39 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 105
Uploads: 13
Quote:
...ne\Plugins\CubePlugins\MinstrelBuffII\BuffWindo w.lua:137: attempt to index local 'theme' (a nil value) on loading :'(
Thanks for letting me know about this, and for including the error message! I've put a fix in place for the next release.

It sounds like there's a problem with your save file. You can find it at:
C:\Users\[username]\Documents\The Lord of the Rings Online\PluginData\[account]\[server]\[character]\MinstrelBuff.plugindata.

Solution 1:

The easiest thing to do is get rid of this save file. You can rename it to MinstrelBuff.plugindata.bak to hide it from the plugin. The plugin will then recreate it the next time you load the plugin.

Solution 2:

Instead of that, if you're comfortable editing this file then find the line that starts with
Code:
["ThemeIndex"]
and set it to a known-good value like so:
Code:
["ThemeIndex"] = "1",
Solution 3:

If you're comfortable editing a plugin code file, you can instead add this to Settings.lua at line 56 to stop the error from happening again:
Code:
	-- Validate the Theme Range:
	local themeIndex = self.settingsTable["ThemeIndex"];
	if (themeIndex == nil or
		themeIndex < 1 or
		themeIndex > #CubePlugins.MinstrelBuffII.Themes.ThemeList) then
		themeIndex = 1;
		self.settingsTable["ThemeIndex"] = 1;
		wasSettingsFileCorrect = false;
	end
I hope this helps, and thanks again!

Last edited by b414213562 : 09-30-2022 at 11:08 AM.
b414213562 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:57 AM.


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