lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Other


Post A Reply
Author Comments Comment Options
Unread 09-26-2018, 12:11 PM  
Vinny
The Indomitable
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 798
Uploads: 12
Re: Re: Re: Re: some false positives, plugin stopped working

Quote:
Would it be possible at some point to remove the problem altogether by writing the numbers out as integers rather than floating point?
I really wish this was an option as it would also make the saved data file smaller, but the Lotro implementation of Lua doesn't support this.
Vinny is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-15-2018, 05:41 PM  
TheOneSheep
The Wary
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 12
Uploads: 1
Re: Re: Re: some false positives, plugin stopped working

Would it be possible at some point to remove the problem altogether by writing the numbers out as integers rather than floating point?

I have an extremely ugly fix to this:
Open the DT_Main.lua file and comment out line 33 where the saved data is being loaded. That way, you loose inter-character features, but since nothing is loaded, nothing can fail

Alternatively, one could make it so the settings are only loaded for a certain language.
TheOneSheep is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-13-2018, 10:56 AM  
Vinny
The Indomitable
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 798
Uploads: 12
Re: Riders of Rohan Task: Mouldy Skins

Quote:
I double-checked, and the task for Mouldy Skins is still available in the game, but was left out of the results of the /dt RR command.
Thanks for the report. I had two entries for it and have fixed it for the next revision. Here is the change to DT_Data.lua, line 456,457 is now:
Code:
["3F1EA"] = { N="Mouldy Skin", H={ [105]="RR,HW" },
	L = { ["Far Anorien"] = 105, ["March of the King"] = 105, ["Haerondir"] = 105 } },
Vinny is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-09-2018, 12:09 PM  
Gabryl of Gladden
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Riders of Rohan Task: Mouldy Skins

Thanks for the promptness of your update to include LoTRO update 22.

I just used the command /dt RR and was surprised when it only listed 4 items, as I knew it had been 5.

I double-checked, and the task for Mouldy Skins is still available in the game, but was left out of the results of the /dt RR command.

Thanks again for such a truly useful plugin! I rely on it often!

It is hard to fix something if you don't know there is something wrong with it. Just trying to help.
Gabryl of Gladden is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-07-2018, 02:03 PM  
Vinny
The Indomitable
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 798
Uploads: 12
Exclamation Versiion 4.4 (Lotro update 22)

This adds the new boards and trophy items from the Strongholds area introduced with Lotro update 22. All the new mobs are at least level 115.

I also fixed some trophy level errors in Mordor.
Vinny is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-05-2018, 06:06 AM  
NotACat
The Wary

Forum posts: 0
File comments: 9
Uploads: 0
Re: Re: some false positives, plugin stopped working

Quote:
This is a known problem when switching from english to german/french, and vice versa. It's because in english the decimal digit separator is a dot, while in german it's a comma.
Would it be possible at some point to remove the problem altogether by writing the numbers out as integers rather than floating point?
NotACat is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-03-2018, 08:02 PM  
Echo Five Kilo
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Re: Re: Move To Bag #

I thought it had something to do with that and tried getting my bags back in order manually. That didn't work...obviously. Thank you for letting me know about the "descrambler"!!
Echo Five Kilo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-03-2018, 03:41 PM  
Thurallor
The Undying
 
Thurallor's Avatar
Interface Author - Click to view interfaces

Forum posts: 202
File comments: 457
Uploads: 20
Re: Move To Bag #

Quote:
I can't seem to get this function to work properly. It seems to just randomly disperse items throughout my inventory bag. Is this a know issue? I can't find mention of it in the comments.
This plugin was made before Turbine added the ability to sort and resize bags. It assumes your bags all have the default number of slots, in the default order.

However, if you have ever used the "Sort" feature in your bags, or any of your bags are nonstandard sizes, this assumption is not true.

If you want this feature to work, you need to do two things:
  1. Change all of your bags back to the standard sizes, with any extra slots going in bag 6.
  2. Use Inventory Bag ID Descrambler to put the slots back in order.
Thurallor is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-03-2018, 12:04 AM  
Echo Five Kilo
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Move To Bag #

I can't seem to get this function to work properly. It seems to just randomly disperse items throughout my inventory bag. Is this a know issue? I can't find mention of it in the comments.
Echo Five Kilo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-16-2018, 02:51 AM  
JoeLOTRO
The Wary

Forum posts: 0
File comments: 13
Uploads: 0
Re: some false positives, plugin stopped working

Quote:
after switching the language in the lotro client, the plugin now fails to load:

attempt to compare string with number
This is a known problem when switching from english to german/french, and vice versa. It's because in english the decimal digit separator is a dot, while in german it's a comma.

Here is an example in german and english:

Code:
return 
{
	["player"] = 
	{
		["Gandalf"] = 106,000000

------------------------------
return 
{
	["player"] = 
	{
		["Gandalf"] = 106.000000


I don't know any other solution for it than deleting the plugin user data file:
  1. Enter your Windows user directory.
  2. Enter the directory "Documents\The Lord of the Rings Online\PluginData".
  3. Search in the sub-directories for the file "DailyTasks_Settings.plugindata".
  4. Delete this file.

BTW: In recent versions of the plugin the settings file is being deleted automatically when switching the launcher's language. Maybe you have an outdated version?

// Joe

Last edited by JoeLOTRO : 02-16-2018 at 02:52 AM.
JoeLOTRO is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-15-2018, 05:58 PM  
Zyphrus
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
some false positives, plugin stopped working

after switching the language in the lotro client, the plugin now fails to load:

DT: German data
DT: Daily Tasks 4.3.2, settings loaded.
attempt to compare string with number
...he Rings Online\Plugins\Vinny\DailyTasks\DT_Main.lua:65: Failed to import package "Vinny.DailyTasks.DT_Window".


Also, there were some false positives with the plugin in German. Both [Ruffled Feathers] and [Tattered Feathers] are translated as [Zerzauste Federn], but the [Tattered Feathers] (which have no associated tasks) cannot be turned in for the [Ruffled Feathers] tasks.

Forgot what the other false positive was, probably stems from a similar translation problem.

Last edited by Zyphrus : 02-15-2018 at 05:59 PM.
Zyphrus is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-01-2017, 10:21 PM  
Vinny
The Indomitable
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 798
Uploads: 12
Exclamation Version 4.3.2

The only change is to fix the spelling of Intriguing Filth.

Note: Sorry that I didn't check messages here sooner. I've been busy playing other games.
Vinny is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-01-2017, 10:11 PM  
Vinny
The Indomitable
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 798
Uploads: 12
Re: Compliments, errors, and a request

Quote:
One error I keep getting when I type /dtn - Error: Missing Location
If you read the documentation, the correct command is "/dtn ;loc" because the plugin can't determine your location without the ";loc"
Vinny is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-22-2017, 06:57 AM  
Pineleaf
The Wary
 
Pineleaf's Avatar

Forum posts: 0
File comments: 5
Uploads: 0
I noticed that in the latest update to the game, Standing Stone corrected the spelling of "Intriguing" for the Intriguing Filth task item in Mordor. As such, Daily Tasks is no longer recognizing this item.
Pineleaf is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-10-2017, 10:34 AM  
ursa_major_prime
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Post Compliments, errors, and a request

First off - I love this plugin; I find it to be one of the most useful and helpful.

One error I keep getting when I type /dtn - Error: Missing Location (doesn't chuff me all that much as I have other work arounds within the plugin to assist with this)

My request: The rep-only option is perfect, and the junk option is of course a great opposite to that. However, the in-between items, not-rep, not-junk could use an option to be identified easily (i.e. /dtnr - daily tasks not rep) if the items don't provide rep I just want to sell them as I *only* use rep-only task items.

I was delighted to see this updated for the new task board locations in the homesteads and to account for the change in level requirements.

Keep up the good work and thank you!

UMP
ursa_major_prime 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 10:21 AM.


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