lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Raiding & Instances


Post A Reply
Author Comments Comment Options
Unread 05-26-2021, 04:28 PM  
Jethpriel
The Wary

Forum posts: 0
File comments: 73
Uploads: 0
What does the number mean

I am wondering what the numbers are standing for.

For example

Agoroth T3+: -3 -3 -4

I don't get what the minus means, looks like 3 columns but what does the various columns mean? I see no heading.

I hope you know what I mean, can't explain better, I am afraid.
Jethpriel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-31-2021, 02:33 PM  
Crell
The Wary

Forum posts: 1
File comments: 19
Uploads: 0
Weekly Quests

What weekly quests are tracked? I'd like to track Missions (15/45) Weekly.
Missions Wildwood (10)
Missions AK Days (X missions a day for X days)
Crell is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-22-2021, 02:30 PM  
Pulse
The Undefeated

Forum posts: 5
File comments: 33
Uploads: 0
in ver 2.1.2 were missed Ember quests

to fix this in en.lua change numeration of massive "Quests" and "Featured Instance" - was [4] and [5], change to [5] and [6] respectively:

Code:
			[4] = {

				["name"] = "Quests",

				[1] = {

					["name"] = "Weeklys",
					["reset"] = {[1] = false, [2] = false, [3] = false, [4] = false, [5] = true, [6] = false, [7] = false},
					[1] = { name = "10 Tasks", text = "The Tasks at Hand"},

				},

			},

			[5] = {

				["name"] = "Featured Instance",

				[1] = {

					["name"] = "FI",
					["reset"] = {[1] = true, [2] = true, [3] = true, [4] = true, [5] = true, [6] = true, [7] = true},
					[1] = { name = "Low level", text = "Featured Instance.+"},
					[2] = { name = "Cap level", text = "Featured Instance.+(cap level)"},
					[3] = { name = "Challenge", text = "Featured Challenge"},

				},

			}, --END_INSTANCE Featured Instance

change to:

Code:
			[5] = {

				["name"] = "Quests",

				[1] = {

					["name"] = "Weeklys",
					["reset"] = {[1] = false, [2] = false, [3] = false, [4] = false, [5] = true, [6] = false, [7] = false},
					[1] = { name = "10 Tasks", text = "The Tasks at Hand"},

				},

			},

			[6] = {

				["name"] = "Featured Instance",

				[1] = {

					["name"] = "FI",
					["reset"] = {[1] = true, [2] = true, [3] = true, [4] = true, [5] = true, [6] = true, [7] = true},
					[1] = { name = "Low level", text = "Featured Instance.+"},
					[2] = { name = "Cap level", text = "Featured Instance.+(cap level)"},
					[3] = { name = "Challenge", text = "Featured Challenge"},

				},

			}, --END_INSTANCE Featured Instance
PS. this code for EN. For another lang - change code in de.lua and fr.lua

Last edited by Pulse : 04-07-2021 at 04:17 AM.
Pulse is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-20-2021, 05:15 PM  
Dyri
The Wary

Forum posts: 0
File comments: 6
Uploads: 0
Error German Client - but THX for your work

Hello,
thx for your work, I'm alway happy about computer experts, who helps normal user like me with wonderful plugins.
I use the german client and got some problems with the version 2.1.0

After loading the game I have the following error message in the chat:

[02/20 10:55:29 PM] ...e/PluginData/Minnitower/[DE-RP] Belegaer/Dyri/LootSettingsNew.plugindata:6: ']' expected near ','

and

[02/20 10:55:29 PM] ... of the Rings Online\Plugins\Souru\LootLogs\Main.lua:287: Unable to parse file!

plugin doesn't start

I deleted the LootSettingsNew.plugindata file and restartet the lotro client. All seems to work fine, the plugin was loaded and the icon appears - until I cklicked with the right mouse button on the plugin-icon. The following error appeared:

[02/20 11:10:53 PM] ...he Rings Online\Plugins\Souru\LootLogs\UI\Window.lua:1108: attempt to index field '?' (a nil value)

Can you fix it or did i any mistakes?

thx for your help and sorry for my bad english

Dyri
Dyri is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-31-2021, 08:26 AM  
Proudsin
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Can we also track Annak-khurfu mission weekly completion?

Thanks in advance

Last edited by Proudsin : 01-31-2021 at 08:26 AM.
Proudsin is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-17-2021, 09:01 AM  
Pulse
The Undefeated

Forum posts: 5
File comments: 33
Uploads: 0
Good job

if you want to track weekly quest for 500 embers in Minas Ithil just add this code to \LootLogs\Localization\en.lua
in Quests section after
[1] ={....}.

Code:
				
[2] = {

	["name"] = "Embers",
	["reset"] = {[1] = true, [2] = false, [3] = false, [4] = false, [5] = false, [6] = false, [7] = false},
	[1] = { name = "Weekly Imlad Ithil Embers", text = "Completed:\nSigils of Imlad Ithil for Embers"},

},
and this code will be:
HTML Code:
				["name"] = "Quests",

				[1] = {

					["name"] = "Weeklys",
					["reset"] = {[1] = false, [2] = false, [3] = false, [4] = false, [5] = true, [6] = false, [7] = false},
					[1] = { name = "Continued Threats", text = "Completed:\nImlad Morgul: Continued Threats"},
					[2] = { name = "10 Quests", text = "Completed:\nImlad Morgul: The Reclamation"},
					[3] = { name = "4 Instances", text = "Completed:\nImlad Morgul: Vale of Sorcery"},
					[4] = { name = "Limlók", text = "Completed:\nProtectors of Wilderland: Bounties"},

				},
				[2] = {

					["name"] = "Embers",
					["reset"] = {[1] = true, [2] = false, [3] = false, [4] = false, [5] = false, [6] = false, [7] = false},
					[1] = { name = "Weekly Imlad Ithil Embers", text = "Completed:\nSigils of Imlad Ithil for Embers"},

				},


PS. this code for EN. For another lang - track text after completed quest in chat window and add yours localization to de-fr.lua

PPS. this quest not tracks by /raid locks command

Last edited by Pulse : 01-17-2021 at 10:32 AM.
Pulse is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-15-2021, 11:52 PM  
Azkarath
The Wary

Forum posts: 0
File comments: 10
Uploads: 0
No updates on Chamber of Shadows

Amazing plugin!

In the new 2.0.2 update LooLogs does not update on the logs on Chamber of Shaodws.

I would really love if you could add the Throne of Dread Terror

Keep up the amazing work you are doing!!
Azkarath is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-09-2021, 06:55 AM  
Drono
The Undying
Interface Author - Click to view interfaces

Forum posts: 47
File comments: 107
Uploads: 1
Quote:
bug in T5 Rem
also for T4

Last edited by Drono : 01-09-2021 at 06:56 AM.
Drono is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-09-2021, 05:33 AM  
Pulse
The Undefeated

Forum posts: 5
File comments: 33
Uploads: 0
bug in T5 Rem

Pulse is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 12-09-2020, 11:40 PM  
crazyman
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Storvagun is coming!Can you add it pls?
crazyman is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-31-2020, 05:17 AM  
Pulse
The Undefeated

Forum posts: 5
File comments: 33
Uploads: 0
Hi @souru

Can you add some weekly quests for Embers of Enchantment?

- Imlad Morgul: The Reclamation - Complete quests of Imlad Morgul: The Reclamation (0/10)
- Imlad Morgul: Vale of Sorcery - Complete Imlad Morgul scaling instances (0/4)
- Imlad Morgul: Continued Threats - Complete quests of Imlad Morgul: Continued Threats (0/8)
- Protectors of Wilderland: Bounties - Complete 5 Bounty quests in Limlok

thanks

Last edited by Pulse : 08-31-2020 at 05:21 AM.
Pulse is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 05-01-2020, 10:03 AM  
souru
The Undefeated
Interface Author - Click to view interfaces

Forum posts: 6
File comments: 18
Uploads: 7
sorry should write this into description^^
... you can drag it around if you have your mouse right next to the icon ... i wanted to make it so left click moved it and rightclick opened the window but that didnt work and this is a transitional solution
souru is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 05-01-2020, 04:46 AM  
Runulf
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Icon

Hey there Souru, I was wandering how I can move the icon around the interface. It seems to be stuck whatever I do.

Last edited by Runulf : 05-01-2020 at 04:49 AM.
Runulf 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 11:45 AM.


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