lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Patches


Post A Reply
Author Comments Comment Options
Unread 03-15-2022, 03:07 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 109
Uploads: 13
Quote:
Any chance that you cross-check my issues? Anything I can do to help you?
Hello there! I had a chance to fix the hyphens in the release that just went out. I also included ascii-encoded versions of the utf-8 files. If needed, replace Strings.lua with Strings-ascii.lua, and MinstrelEffects.lua with MinstrelEffects-ascii.lua.

I have not yet fixed the "Fixed anthems" visuals. That will come in a future update!
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-15-2022, 04:49 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 109
Uploads: 13
I think there is still a bug with the code that detects that you have changed Class Trait Trees. The plugin works correctly if you are already in blue when it loads.
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-15-2022, 08:35 PM  
gyrf
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Missing VindarPatch

This latest version tries to import "MinstrelBuffs.MinstrelBuffWindow.VindarPatch" in Main.lua, but that file isn't included in the .zip.
gyrf is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-16-2022, 08:55 AM  
Farothhen
The Wary
 
Farothhen's Avatar

Forum posts: 2
File comments: 95
Uploads: 0
Quote:
I think there is still a bug with the code that detects that you have changed Class Trait Trees. The plugin works correctly if you are already in blue when it loads.
This is the thing I also discovered but wasnt't sure, why it does this. Thanks for your effort!
Farothhen is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-16-2022, 09:26 AM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 109
Uploads: 13
Re: Missing VindarPatch

Quote:
This latest version tries to import "MinstrelBuffs.MinstrelBuffWindow.VindarPatch" in Main.lua, but that file isn't included in the .zip.
Thanks for catching that! I've released an update that includes the VindarPatch.lua file.
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-21-2022, 07:43 PM  
Farothhen
The Wary
 
Farothhen's Avatar

Forum posts: 2
File comments: 95
Uploads: 0
I get an error after clean installing the latest version on the german client:

Quote:
...lugins\MinstrelBuffs\MinstrelBuffWindow\Setting s.lua:12: attempt to call global 'euroNormalize' (a nil value)
Deleting the plugin data file didn't help either.
The plugin doesn't work anymore.

Last edited by Farothhen : 03-21-2022 at 07:50 PM.
Farothhen is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-21-2022, 08:12 PM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 109
Uploads: 13
Quote:
I get an error after clean installing the latest version on the german client:

Deleting the plugin data file didn't help either.
The plugin doesn't work anymore.
My apologies, I must have missed a file with the patch.

If you add this to the bottom of Plugins/MinstrelBuffs/MinstrelBuffWindow/SettingsEncoder.lua, it should fix the problem:

Code:
-- create a function to automatically convert in string format to number:
if (isEuroFormat) then
    function euroNormalize(value)
        if (value == nil) then return 0.0; end
        return tonumber((string.gsub(value, "%.", ",")));
    end
else
    function euroNormalize(value)
        if (value == nil) then return 0.0; end
        return tonumber((string.gsub(value, ",", ".")));
    end
end
b414213562 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-22-2022, 04:50 AM  
Farothhen
The Wary
 
Farothhen's Avatar

Forum posts: 2
File comments: 95
Uploads: 0
Thank you, that fixed it.
Farothhen is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-06-2022, 03:38 PM  
Farothhen
The Wary
 
Farothhen's Avatar

Forum posts: 2
File comments: 95
Uploads: 0
I just watched the latest episode of Plugin Along.

YOU'RE THE GREATEST!

Let's blame the translation for it, they used a hyphen.
Farothhen is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 05-07-2022, 06:19 PM  
Jethpriel
The Wary

Forum posts: 0
File comments: 73
Uploads: 0
Plugin not loading

The plugin is not loading, I am getting this error:
...lugins\MinstrelBuffs\MinstrelBuffWindow\Setting s.lua:12: attempt to call global 'euroNormalize' (a nil value)

What happened and how to fix this?

April I updated the plugin to version 1.9.1.6 and it was working just fine as it should, but now it does not load at all.
Can't get it loading using plugins manager either.
Jethpriel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 05-07-2022, 08:34 PM  
Jethpriel
The Wary

Forum posts: 0
File comments: 73
Uploads: 0
Re: Plugin not loading

Quote:
The plugin is not loading, I am getting this error:
...lugins\MinstrelBuffs\MinstrelBuffWindow\Setting s.lua:12: attempt to call global 'euroNormalize' (a nil value)

What happened and how to fix this?

April I updated the plugin to version 1.9.1.6 and it was working just fine as it should, but now it does not load at all.
Can't get it loading using plugins manager either.
Ohh wait a minute. Will try your advice that you gave earlier.
Adding this:

-- create a function to automatically convert in string format to number:
if (isEuroFormat) then
function euroNormalize(value)
if (value == nil) then return 0.0; end
return tonumber((string.gsub(value, "%.", ",")));
end
else
function euroNormalize(value)
if (value == nil) then return 0.0; end
return tonumber((string.gsub(value, ",", ".")));
end
end

I notice I did so in the wrong file
Jethpriel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 05-08-2022, 04:37 PM  
Jethpriel
The Wary

Forum posts: 0
File comments: 73
Uploads: 0
Re: Re: Plugin not loading

Quote:
Ohh wait a minute. Will try your advice that you gave earlier.
Adding this:

-- create a function to automatically convert in string format to number:
if (isEuroFormat) then
function euroNormalize(value)
if (value == nil) then return 0.0; end
return tonumber((string.gsub(value, "%.", ",")));
end
else
function euroNormalize(value)
if (value == nil) then return 0.0; end
return tonumber((string.gsub(value, ",", ".")));
end
end

I notice I did so in the wrong file
Working now after adding this in the correct file. Thank you
Jethpriel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-30-2022, 11:10 AM  
b414213562
The Undefeated
 
b414213562's Avatar
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 109
Uploads: 13
This patch has been combined with the original MinstrelBuff plugin to create MinstrelBuff II!

MinstrelBuff II has been updated to work with the 2022 Minstrel Update that came with U33.2.
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 05:01 AM.


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