lotrointerface.com
Search Downloads


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


Post A Reply
Author Comments Comment Options
Unread 09-11-2012, 12:19 PM  
Galuhad
The Undying
 
Galuhad's Avatar
Interface Author - Click to view interfaces

Forum posts: 24
File comments: 170
Uploads: 20
Quote:
Hi Galuhad,

Here is the Beta FR version.

I think it is backward compatible with EN & DE (some friend of mine are running the EN client but none are using the DE locale).

http://kikibased.free.fr/lotroPlugin...hadPlugins.zip

I updated Rolls.lua & Languages.lua
I don't update the TGA files, because i'm not a graphic designer

Updates are surrounded by -- Kiki

I post a link on several French community websites (http://lotro.fr, http://lotro.jeuxonline.info/#fr, and the Turbine official forum

I 'm waiting for feedbacks

Regards

PS: I have seen that some labels are translated in Fr & DE in instancesDB.lua & skarmishDB.lua, these files are included, but I didn't find where these tranlations are used.
Kiki, thank you so much for this. I know it's been a long time since you have posted, but I am working on an update for this right now as I have a week off work. Should have something in the coming days.
Galuhad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-11-2012, 08:38 PM  
Adra
The Undying
 
Adra's Avatar
Interface Author - Click to view interfaces

Forum posts: 171
File comments: 678
Uploads: 13
Thank you very much Galuhad for this great plugin, I love the dice roll feature !

Et merci Kiki pour la trad FR !

Last edited by Adra : 10-11-2012 at 08:39 PM.
Adra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-02-2012, 05:08 AM  
Galuhad
The Undying
 
Galuhad's Avatar
Interface Author - Click to view interfaces

Forum posts: 24
File comments: 170
Uploads: 20
10k downloads

Raid Assistant has reached over 10, 000 downloads Thank you to every one who has downloaded it so far.
Galuhad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-30-2012, 03:07 PM  
Almagnus1
The Undefeated
Interface Author - Click to view interfaces

Forum posts: 8
File comments: 57
Uploads: 2
One thing that's really irritating when trying to do the rolls is when people start leaving at the end of a skraid, and the list of who has and hasn't rolled resets.

Is there any you can adjust the rolling part of the plugin to darken those who are no longer present, if and only if the event is a leave?
Almagnus1 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 12-01-2012, 04:52 PM  
Lumbra
The Undefeated
Interface Author - Click to view interfaces

Forum posts: 6
File comments: 38
Uploads: 1
At the german client there are the raid channel /szc and the group channel /g

Is it possible for you to add these channels to the rolls window for sending the chat-message?

Thanks ins advance...

Best regards,
Lumbra

-- Edit: I have added some code to the Rolls.lua so that it should work in german too...

Replace
Code:
if tempPartySize > 6 then
	tempCHANNEL = "/ra";
else
	tempCHANNEL = "/f";
end
with

Code:
if tempPartySize > 6 then
	if SETTINGS.LANGUAGE == "GERMAN" then 
		tempCHANNEL = "/szc";
	elseif SETTINGS.LANGUAGE == "ENGLISH" then
		tempCHANNEL = "/ra";
	end
else
	if SETTINGS.LANGUAGE == "GERMAN" then 
		tempCHANNEL = "/g";
	elseif SETTINGS.LANGUAGE == "ENGLISH" then
		tempCHANNEL = "/f";
	end
end

Last edited by Lumbra : 12-02-2012 at 01:16 PM.
Lumbra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 12-31-2012, 04:33 AM  
finners
The Wary
 
finners's Avatar

Forum posts: 0
File comments: 8
Uploads: 0
I love the plugin but I am afraid to say it is causing some lag issues. I have also read other posts on lotro forums that by disabling this plugin the lag ceases.
Any chance this could be fixed please?
finners is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-05-2013, 01:57 PM  
filodo
The Wary

Forum posts: 0
File comments: 6
Uploads: 0
Excellent plugin. Thank you for you work on this.

As far as lag goes (post below) you can uncheck 'loot tracking' from the loot tracking menu. You don't have to unload this plugin, just don't track loot.

I would like to put in a request for a pretty advanced feature that i think most raiding kins can use. With the new auto-loot system in place using DKP is going to be a lot harder to use.

DKP and auto loot
To use dkp with auto-loot, everyone that loots a dkp item (teal, FA symbol etc) will have to pass it to the leader. The leader then checks their website or DKP tracking tool to see who has the highest dkp, then check dkp 'prices' of items, then distributes based on DKP. At least for me this is going to be a huge PITA. It was slow enough just to check an outside-the-game dkp tracker.

I (and i assume many other raids leaders) would love and in game DKP tracker that
1) Tracks the items people had drop for them (already in the plugin),
2) Has a way to assign/upload/store dkp values for items (formated text file?)
3) Calculates, tracks, and exports dkp earned per character (assigning alts to mains to share dkp would be nice). A filter and list function would be nice as well.

This link has some info on dkp system math/motivation. Ther are others out there. http://wow.joystiq.com/2011/09/23/re...-loot-systems/

I know its a lot to ask for but i think your previous work shows the talent to accomplish this and the raiding community would appreciate it.
filodo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-05-2013, 06:01 PM  
Vald
The Undying
 
Vald's Avatar

Forum posts: 22
File comments: 54
Uploads: 0
Will the loot tracking function be affected by this:

"There are two new chat text filters: Loot ( Self ) and Loot ( Fellow ). Loot notification messages for you and your fellows will go to these filters and you can change their font/size in the Options/Chat panel."

That's in the patch notes from Bullroarer today.
Vald is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-08-2013, 01:43 PM  
Galuhad
The Undying
 
Galuhad's Avatar
Interface Author - Click to view interfaces

Forum posts: 24
File comments: 170
Uploads: 20
Thanks for the comments.

Just to update you all. I will be adjusting the loot tracking in this plugin inline with the new update so you can choose to track your own loot, fellow loot, or both. I have also made further changes to the loot tracking code to hopefully reduce the lag.
Galuhad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-07-2013, 12:44 PM  
Crell
The Wary

Forum posts: 1
File comments: 19
Uploads: 0
Thanks! I use your plugin to help me quickly pull up totals for the kinds of things that drop when trying to work out drop rates =)
Crell is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-11-2013, 07:06 PM  
Stever1388
The Undying
Interface Author - Click to view interfaces

Forum posts: 33
File comments: 122
Uploads: 10
Any update on getting the loot to work with the new chat filters?
Stever1388 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-07-2013, 07:02 PM  
Crell
The Wary

Forum posts: 1
File comments: 19
Uploads: 0
I'd love to see this updated for the new chat-loot channels, because I'd like to get data on whether or not we've got part 2 of the WI flag here..
Crell is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-15-2013, 05:20 AM  
Galuhad
The Undying
 
Galuhad's Avatar
Interface Author - Click to view interfaces

Forum posts: 24
File comments: 170
Uploads: 20
Quote:
I'd love to see this updated for the new chat-loot channels, because I'd like to get data on whether or not we've got part 2 of the WI flag here..
The last update has this already

24/03/2013 - v1.2.2
- Updated to recognise loot from the two new channels - each with it's own logging option.
- Made some more adjustments to the loot logging to further reduce lag.

Last edited by Galuhad : 04-15-2013 at 05:21 AM.
Galuhad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-22-2013, 04:34 AM  
Tappo
The Wary
 
Tappo's Avatar

Forum posts: 2
File comments: 22
Uploads: 0
Patch to hide icon on F12

Hello,
this patch will hide the raid assistant icon when F12 is pressed
Code:
--- C:/Users/Tappo/Documents/The Lord of the Rings Online/Plugins/GaluhadPlugins/RaidAssistant/Windows/IconWindow.lua.f12.orig	Fri Sep 14 01:21:16 2012
+++ C:/Users/Tappo/Documents/The Lord of the Rings Online/Plugins/GaluhadPlugins/RaidAssistant/Windows/IconWindow.lua	Tue Sep 03 20:16:39 2013
@@ -69,6 +69,22 @@
 		end
 	end
 
+	-- Tappo: hide icon on F12 based on code from Garan
+	-- https://www.lotro.com/forums/showthread.php?493466-How-to-hide-a-window-on-F12&p=6581962#post6581962
+	wIcon.KeyDown=function(sender, args)
+		if ( args.Action == 268435635 ) then
+			hudVisible=not hudVisible;
+			if hudVisible then
+				wIcon:SetVisible(false);
+			else
+				wIcon:SetVisible(SETTINGS.ICONVIS);
+			end
+		end
+	end
+
+	wIcon:SetWantsKeyEvents(true);
+	-- Tappo: end hide icon on F12
+
 	DrawMainPopup();
 
 end
Tappo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-20-2022, 03:52 PM  
sojournerx
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Re: Patch to hide icon on F12

Hello,
this patch will hide the raid assistant icon when F12 is pressed
Code:
--- C:/Users/Tappo/Documents/The Lord of the Rings Online/Plugins/GaluhadPlugins/RaidAssistant/Windows/IconWindow.lua.f12.orig	Fri Sep 14 01:21:16 2012
+++ C:/Users/Tappo/Documents/The Lord of the Rings Online/Plugins/GaluhadPlugins/RaidAssistant/Windows/IconWindow.lua	Tue Sep 03 20:16:39 2013
@@ -69,6 +69,22 @@
 		end
 	end
 
+	-- Tappo: hide icon on F12 based on code from Garan
+	-- https://www.lotro.com/forums/showthread.php?493466-How-to-hide-a-window-on-F12&p=6581962#post6581962
+	wIcon.KeyDown=function(sender, args)
+		if ( args.Action == 268435635 ) then
+			hudVisible=not hudVisible;
+			if hudVisible then
+				wIcon:SetVisible(false);
+			else
+				wIcon:SetVisible(SETTINGS.ICONVIS);
+			end
+		end
+	end
+
+	wIcon:SetWantsKeyEvents(true);
+	-- Tappo: end hide icon on F12
+
 	DrawMainPopup();
 
 end
**Edit** Never mind, figured it out as you put in all the relevant info for us to figure out! Thanks for the fix.

Last edited by sojournerx : 08-23-2022 at 03:53 AM.
sojournerx 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 PM.


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