Go to Page... |
Updated: | 05-29-13 04:58 AM |
Created: | 12-23-12 01:39 PM |
Downloads: | 4,513 |
Favorites: | 11 |
MD5: |
File Name |
Version |
Size |
Author |
Date |
2.02r2 |
5kB |
adelea |
03-21-13 09:06 AM |
|
2.02r1 |
4kB |
adelea |
02-28-13 06:51 AM |
|
2.01r2 |
4kB |
adelea |
12-24-12 04:04 AM |
|
2.01r1 |
4kB |
adelea |
12-23-12 01:39 PM |
|
0B |
adelea |
01-01-70 12:00 AM |
![]() |
Comment Options |
![]() |
|
Forum posts: 0
File comments: 4
Uploads: 0
|
As far, as I could test it, it works now with the German client....
Thanks!!!! ![]() |
![]() ![]() |
![]() |
Elorian53 |
View Public Profile |
Send a private message to Elorian53 |
Send email to Elorian53 |
Find More Posts by Elorian53 |
Add Elorian53 to Your Buddy List |
![]() |
||
|
Quote:
http://www.riftui.com/downloads/download323-DefilerFG Downloads 2.02r1 for me - which is the latest. If that doesnt work, then you can also get it from: http://www.exyles.com/addons/DefilerFG-2.02r1.zip
Last edited by adelea : 03-03-13 at 04:10 AM.
|
|
![]() ![]() |
![]() |
adelea |
View Public Profile |
Send a private message to adelea |
Send email to adelea |
Find More Posts by adelea |
Add adelea to Your Buddy List |
![]() |
|
Forum posts: 0
File comments: 4
Uploads: 0
|
No update yet....
Could anyone of the admins please give the permission for the download? Thanks |
![]() ![]() |
![]() |
Elorian53 |
View Public Profile |
Send a private message to Elorian53 |
Send email to Elorian53 |
Find More Posts by Elorian53 |
Add Elorian53 to Your Buddy List |
adelea |
View Public Profile |
Send a private message to adelea |
Send email to adelea |
Find More Posts by adelea |
Add adelea to Your Buddy List |
![]() |
|||
Forum posts: 0
File comments: 4
Uploads: 0
|
Re: Re: Help
Quote:
Thanks nevertheless ![]() Greetings Silva |
||
![]() ![]() |
![]() |
Elorian53 |
View Public Profile |
Send a private message to Elorian53 |
Send email to Elorian53 |
Find More Posts by Elorian53 |
Add Elorian53 to Your Buddy List |
![]() |
||
|
Re: Help
Quote:
|
|
![]() ![]() |
![]() |
adelea |
View Public Profile |
Send a private message to adelea |
Send email to adelea |
Find More Posts by adelea |
Add adelea to Your Buddy List |
![]() |
|
Forum posts: 0
File comments: 4
Uploads: 0
|
Help
I think the addon would be great - but it doesn't work on my PC.
The frame just sits there (even when there are links on the tanks) and does nothing. It doesn't show either the Charakters nore the links. Anyone an Idea why? Would be great, if you could help me, cause I come to use the Defiler quite often in Raids... Thanks and have a nice day Silva |
![]() ![]() |
![]() |
Elorian53 |
View Public Profile |
Send a private message to Elorian53 |
Send email to Elorian53 |
Find More Posts by Elorian53 |
Add Elorian53 to Your Buddy List |
![]() |
||
|
Quote:
I didnt take the screenshot - I dont have a cleric. I asked the person who asked me to write the addon to take a screenshot, and I suspect since they were on Blightweald at the time, its from a WF. |
|
![]() ![]() |
![]() |
adelea |
View Public Profile |
Send a private message to adelea |
Send email to adelea |
Find More Posts by adelea |
Add adelea to Your Buddy List |
![]() |
|
Forum posts: 0
File comments: 1
Uploads: 0
|
I'm famous now!
![]() Just wondering whether you took that in a random expert or WF? |
![]() ![]() |
![]() |
killerkonnat |
View Public Profile |
Send a private message to killerkonnat |
Send email to killerkonnat |
Find More Posts by killerkonnat |
Add killerkonnat to Your Buddy List |
![]() |
|
Code:
14a15,16 > local LINK_TO_BUFF_ID = {} > 20a23,27 > > local miseryID = "AFDF7D1D76BA58F3C" > local agonyID = "AFD386B0E4862D1CF" > local sufferingID = "AFA54F750B5F4BDB5" > local distressID = "AFB13399A8E5E730D" 76a84,105 > > agony = false > suffering = false > misery = false > distress = false > for a,b in pairs(Inspect.Ability.New.List()) do > if a == "AFDF7D1D76BA58F3C" then > misery = true > else > if a == "AFD386B0E4862D1CF" then > agony = true > else > if a == "AFA54F750B5F4BDB5" then > suffering = true > else > if a == "AFB13399A8E5E730D" then > distress = true > end > end > end > end > end 80a110,111 > > 132a164,169 > > if agony == false then > UIx.fx_ago_icon:SetVisible(false) > UIx.fx_ago_name:SetVisible(false) > UIx.fx_ago_hbar:SetVisible(false) > end 184a222,227 > if suffering == false then > UIx.fx_suf_icon:SetVisible(false) > UIx.fx_suf_name:SetVisible(false) > UIx.fx_suf_hbar:SetVisible(false) > end > 235a279,284 > if misery == false then > UIx.fx_mis_icon:SetVisible(false) > UIx.fx_mis_name:SetVisible(false) > UIx.fx_mis_hbar:SetVisible(false) > end > 286a336,342 > if distress == false then > UIx.fx_dis_icon:SetVisible(false) > UIx.fx_dis_name:SetVisible(false) > UIx.fx_dis_hbar:SetVisible(false) > end > > 331c387 < if v.name == "Link of Agony" then --- > if v.type == "BFA6FB1BAE463D82B" then 336c392,393 < elseif v.name == "Link of Suffering" then --- > LINK_TO_BUFF_ID[IX_AGO] = v.id > elseif v.type == "BFD2398235B465FED" then 341c398,399 < elseif v.name == "Link of Misery" then --- > LINK_TO_BUFF_ID[IX_SUF] = v.id > elseif v.type == "BFF27EA366EA0638D" then 346c404,405 < elseif v.name == "Link of Distress" then --- > LINK_TO_BUFF_ID[IX_MIS] = v.id > elseif v.type == "BFC515C3AB0F59096" then 350a410 > LINK_TO_BUFF_ID[IX_DIS] = v.id 355a416,420 > > function DFG.Event_Buff_Remove(u,t) > DFG.Check_Links() > end > 363a429,430 > table.insert(Event.Buff.Remove, { DFG.Event_Buff_Remove, addon.identifier, "Event.Buff.Remove" }) > table.insert(Event.Ability.New.Add, { DFG.Event_Ab_Add, addon.identifier, "Event.Ability.New.Add" }) 371a439,483 > function DFG.Event_Ab_Add(abs) > agony = false > suffering = false > misery = false > distress = false > for a,b in pairs(abs) do > if a == "AFDF7D1D76BA58F3C" then > misery = true > else > if a == "AFD386B0E4862D1CF" then > agony = true > else > if a == "AFA54F750B5F4BDB5" then > suffering = true > else > if a == "AFB13399A8E5E730D" then > distress = true > end > end > end > end > end > > if distress == false then > UIx.frame:SetVisible(false) > else > UIx.frame:SetVisible(true) > end > > > UIx.fx_mis_icon:SetVisible(misery) > UIx.fx_mis_name:SetVisible(misery) > UIx.fx_mis_hbar:SetVisible(misery) > UIx.fx_dis_icon:SetVisible(distress) > UIx.fx_dis_name:SetVisible(distress) > UIx.fx_dis_hbar:SetVisible(distress) > UIx.fx_suf_icon:SetVisible(suffering) > UIx.fx_suf_name:SetVisible(suffering) > UIx.fx_suf_hbar:SetVisible(suffering) > UIx.fx_ago_icon:SetVisible(agony) > UIx.fx_ago_name:SetVisible(agony) > UIx.fx_ago_hbar:SetVisible(agony) > end > > 427a540 > UIx.fl[x].n:SetText("") - remove name when the link is removed - remove links instantly - change matching on name for matching on buff.type, should work for others languages too now - only show links your spec have |
|
![]() ![]() |
![]() |
Grepsd |
View Public Profile |
Send a private message to Grepsd |
Send email to Grepsd |
Find More Posts by Grepsd |
Add Grepsd to Your Buddy List |
![]() |
|
Forum posts: 0
File comments: 4
Uploads: 0
|
Thumbs up for Adelea, Within a couple of hours of asking him to write this for me I had it installed and working perfectly. Really appreciate your time and effort mate.
|
![]() ![]() |
![]() |
Usman |
View Public Profile |
Send a private message to Usman |
Send email to Usman |
Find More Posts by Usman |
Add Usman to Your Buddy List |
![]() |