Results: 128Comments by: Flagrick
File: Research Assistant (Find your researchable items)07/31/14
Hello, i have some trouble with...
Posted By: Flagrick
Hello, i have some trouble with ornate or intricate icons in grid view. in line view all is ok, but in grid view, icons shift to the right. here an example in image : http://i.imgur.com/ElbqeNt.jpg A /reloadui doesn't change anything. see in 0.7.3c but also in 0.7.1. PS. i have done a change in ResearchAssistant.lua...
File: Lootdrop, Continued (All in One)07/21/14
I have reported this bug to the aut...
Posted By: Flagrick
I have reported this bug to the author of LibAddonMenu-2.0 as this is most probably caused by an update error of its panel widget (bug #966). You can use workaround to fix this issue - install the latest version of LibAddonMenu-2.0 library as a stand-alone addon. Thank you ! :) Lootdrop 1.9.3 : Libaddonmenu updated to r13
File: Lootdrop, Continued (All in One)07/13/14
Is there a way or option to resize...
Posted By: Flagrick
Is there a way or option to resize the icon and the font on the item description? From what I have seen I can make the column where the loot shows thinner but it just cuts the item description. Would love to be able to make it thinner and also resize the icon and font to match the new width. I have no plans to make it configurable...
File: Lootdrop, Continued (All in One)07/09/14
oi! addon puts out "GuildType0" in...
Posted By: Flagrick
oi! addon puts out "GuildType0" in chat when killing daedra!... it's debug info. it's armless. I will do a quickversion. thx for feedback Done in 1.9.1.a
File: Lootdrop, Continued (All in One)07/09/14
oi! addon puts out "GuildType0" in...
Posted By: Flagrick
oi! addon puts out "GuildType0" in chat when killing daedra!... it's debug info. it's armless. I will do a quickversion. thx for feedback
File: Lootdrop, Continued (All in One)07/09/14
one of these days, you're gonna hav...
Posted By: Flagrick
one of these days, you're gonna have to break out and rename this "ShowGains" or something like that :D Yes, you're right :)
File: Lootdrop, Continued (All in One)07/08/14
Thanks for your work on this mod!...
Posted By: Flagrick
Thanks for your work on this mod! I tried to read the Info page, does this mod show Group Loot? No, only personal loot I'm just looking for a mod which monitors Loot, all the options to monitor XP are optional, correct? yes a lot of things are optionnal (Xp, Ap, BT, coin, style ...). I don't think that LootDrop is the go...
File: Lootdrop, Continued (All in One)07/06/14
English (/script SetCVar("language....
Posted By: Flagrick
English (/script SetCVar("language.2", "en")): 1 - Fighters Guild 2 - Mages Guild 3 - Undaunted German (/script SetCVar("language.2", "de")): 1 - Kriegergilde^fd 2 - Magiergilde^fd 3 - Unershrockene^pd French (/script SetCVar("language.2", "fr")): 1 - Guilde des guerriers 2 - Guilde des mages^f 3 - Indomptable^M
File: Lootdrop, Continued (All in One)07/05/14
hello, i need translation/confir...
Posted By: Flagrick
hello, i need translation/confirmation for an lootdrop evolution. I want to indicate reputation gain in lootdrop with 3 guilds: fightersguild, magesguild and undaunted. But i m not sure of german words that are in the german guild name. i need only one piece of name to differenciate it. For the moment i use this words (...
File: Lootdrop, Continued (All in One)07/02/14
Flagrick, The fault is mine, I m...
Posted By: Flagrick
Flagrick, The fault is mine, I misread what you had posted. I don't know if it helps you at all, but I can confirm that this: newDrop:SetLabel( ZO_CommaDelimitNumber(difference) ) ...and this: newDrop:SetLabel( ZO_CommaDelimitNumber(gain) ) ...DO work to show the separator as a comma on the NA version. I understand...
File: Lootdrop, Continued (All in One)07/02/14
Thousand separator will not be an o...
Posted By: Flagrick
Thousand separator will not be an option. But i will try a localized method (it is a Garkin proposal, once again :) ) "localized" separator: ZO_CommaDelimitNumber(amount) --delimiter will be GetString(SI_DIGIT_GROUP_SEPARATOR) I will try and test it, and then if i get my space separator (because I do all this for me too),...
File: Lootdrop, Continued (All in One)07/02/14
Thanks for giving us the option to...
Posted By: Flagrick
Thanks for giving us the option to display just the values of the XP and gold gains. Something I just noticed in the new version however, is that if you choose the simple view for gold and XP, the numbers are separated with spaces instead of commas which looks a little weird. No it's not weird. http://docs.oracle.com/cd/E19455-...
File: Lootdrop, Continued (All in One)07/01/14
Thanks for giving us the option to...
Posted By: Flagrick
Thanks for giving us the option to display just the values of the XP and gold gains. Something I just noticed in the new version however, is that if you choose the simple view for gold and XP, the numbers are separated with spaces instead of commas which looks a little weird. No it's not weird. http://docs.oracle.com/cd/E19455-...
File: Lootdrop, Continued (All in One)07/01/14
As i said, i will do it. And ......
Posted By: Flagrick
As i said, i will do it. And ... it's done in V1.8.8 Thx to Garkin for his help (he's a very good bug tracker ;) ). @Kevinmon: the text is cut off, yes, but you can also extend the size of the frame :) +1 Oh pls make those totals optional via setting... If you don't have the time, i could jump in. it will be in n...
File: Lootdrop, Continued (All in One)07/01/14
Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Debug mode
Posted By: Flagrick
Pattern on the line 737 in LootDrop.lua probably won't work correctly, because you aren't using number as an argument. I believe that you will never loot more than 1000 items at once, so you can safely use just plain number without formating. newDrop:SetLabel( zo_strformat( ' <<1>> <<2>>', quantity, text ) ) This pattern '<<1>>' sh...
File: Lootdrop, Continued (All in One)07/01/14
Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Debug mode
Posted By: Flagrick
Question: someone know how to simply format a number with a tousand separator like this: 1000000 => 1 000 000 I do not see that in string lua format Thx in advance. FormatIntegerWithDigitGrouping(amount, " ") --or use (delimiter will be GetString(SI_DIGIT_GROUP_SEPARATOR)): ZO_CommaDelimitNumber(amount) thx. Used in...
File: Lootdrop, Continued (All in One)06/30/14
Oh pls make those totals optional v...
Posted By: Flagrick
Oh pls make those totals optional via setting... If you don't have the time, i could jump in. it will be in next version, But try V1.8.7, the look is better ;-)
File: Lootdrop, Continued (All in One)06/30/14
Re: Re: Re: Re: Re: Re: Re: Re: Debug mode
Posted By: Flagrick
Question: someone know how to simply format a number with a tousand separator like this: 1000000 => 1 000 000 I do not see that in string lua format Thx in advance. FormatIntegerWithDigitGrouping(amount, " ") --or use (delimiter will be GetString(SI_DIGIT_GROUP_SEPARATOR)): ZO_CommaDelimitNumber(amount) thx. Used in...
File: Lootdrop, Continued (All in One)06/30/14
Re: Re: Re: Re: Debug mode
Posted By: Flagrick
Just a humble request: I like the option to have have the XP gains show your percent of level and gold to show your total, but I would really like an interface option to toggle this off for a more minimalist look, like it was before. Otherwise everything looks great! Thanks for the continued updates. Actually I like the new lo...
File: Lootdrop, Continued (All in One)06/30/14
Since the latest update EXP and Mon...
Posted By: Flagrick
Since the latest update EXP and Money gains don't seem to accumulate correctly. Only the value of the last sold item is show, it just gets overwritten instead of added. Same for exp, only the base kill exp is shown the finesse exp gets overwritten. This most likely is due to the changed format for the display of money and exp....
File: Lootdrop, Continued (All in One)06/30/14
Since the latest update EXP and Mon...
Posted By: Flagrick
Since the latest update EXP and Money gains don't seem to accumulate correctly. Only the value of the last sold item is show, it just gets overwritten instead of added. Same for exp, only the base kill exp is shown the finesse exp gets overwritten. This most likely is due to the changed format for the display of money and exp....
File: Lootdrop, Continued (All in One)06/30/14
Re: Re: Re: Re: Re: Re: Debug mode
Posted By: Flagrick
Question: someone know how to simply format a number with a tousand separator like this: 1000000 => 1 000 000 I do not see that in string lua format Thx in advance. Here is a function to format a number with "," separator. To change it to use "space" change the "%1,%2" to "%1 %2". function CommaSep(value) local format...
File: Lootdrop, Continued (All in One)06/30/14
Re: Re: Re: Re: Debug mode
Posted By: Flagrick
Here is a quick edit to have money and XP show only gains like before, while keeping all the other new improvements. Open LootDrop.lua in a text editor (Notepad++ recommended) and make the following changes: I will add an option in menu next time. I had this informations because there was sufficient place in a loot frame to add i...
File: Lootdrop, Continued (All in One)06/29/14
Re: Debug mode
Posted By: Flagrick
It seems that you forgot to turn off debug mode: local OkdebugLootDrop=true Yes you're right, but never mind there is no call of my debug function. for the next version, the boolean is turned to false ;-)
File: Lootdrop, Continued (All in One)06/27/14
Re: Re: Re: error after the patch
Posted By: Flagrick
I was sure I had the latest version but it seems I missed one update. Anyway after I've downloaded the newest version all seems to work just fine. Sorry for all the confusion... Ok, thx for feedback. So i will try to recover some features as icons from quests or rarity of some items. But it may take time:(