Download
(21 Kb)
Download
Updated: 02/24/20 10:31 AM
Pictures
File Info
Updated:02/24/20 10:31 AM
Created:10/13/17 07:58 PM
Monthly downloads:301
Total downloads:27,456
Favorites:35
MD5:
Categories:Group, Guild & Friends, Bags, Bank, Inventory
Farming Party  Popular! (More than 5000 hits)
Version: 2.14.0
by: Aldanga [More]
A simple addon that aggregates the items your group gets while farming and provides notifications and a leaderboard based upon Arkadius' Trade Tools, Master Merchant, or Tamriel Trade Centre pricing values.

Supported Commands
Code:
/fp                           | Toggles the highscore window
/fp prune                     | Removes members no longer in group. (Useful when tracking is off and you want to remove members who have left.)
/fp reset                     | Resets all loot data
/fp start OR [pause OR stop]  | Toggles loot tracking
/fp status                    | Shows current loot tracking status
/fp update                    | Adds or removes members to match current group. (Useful when tracking is off and you want to update the members.)
/fpc                          | Puts high score output into the chat box
/fp help                      | Outputs these commands to the chat window
[2.14.0] - 2020-02-24
----------
Changed
- API version for Harrowstorm DLC

[2.13.0] - 2019-10-19
----------
Added
- Option to disable loot tracking upon logout
Changed
- API version for Dragonhold DLC

[2.12.1] - 2019-08-07
----------
Fixed
- Broken looting function signature

[2.12.0] - 2019-08-07
----------
Added
- LibAsync dependency to help mitigate potential stutters
Changed
- API Version for Scalebreaker DLC
- Loot handling code to fix some performance problems
Fixed
- Superfluous whitespace in scores chat output
Removed
- LibStub dependency

[2.11.2] - 2019-04-02
----------
Fixed
- Incorrect folder name (this is why we automate, amirite?)

[2.11.1] - 2019-04-01
----------
Fixed
- Missing .xml file

[2.11.0] - 2019-04-01
----------
Added
- Configuration option for /fpc chat output
- Resize support to the loot window
- Timestamp support to the loot window

[2.10.1] - 2019-02-03
----------
Fixed
- Errantly removed API version for Murkmire.

[2.10.0] - 2019-02-03
----------
Added
- LibPrice integration. You must install this lib manually.
Changed
- API version for Wrathstone DLC

[2.9.0] - 2018-08-13
----------
Added
- Addon terms from ZOS
Changed
- API version for Wolfhunter DLC

[2.8.0] - 2018-07-28
----------
Changed
- Price formatting to use delimiters
- Chat logging to make it more consistent

[2.7.0] - 2018-07-01
----------
Changed
- Arkadius' Trade Tools price queries to use the tooltip date range setting instead of the price from the last 30 days

[2.6.0] - 2018-05-26
----------
Changed
- API version for Summerset chapter

[2.5.0] - 2018-04-07
----------
Added
- Options to exclude gear and motifs from looted items
- Option for minimum item quality for looted items

Fixed
- Some verbiage issues

[2.4.0] - 2018-02-23
----------
Added
- Key bind for toggling the highscore window

[2.3.0] - 2018-02-20
----------
Added
- Tamriel Trade Centre fallback when neither ATT nor MM are enabled (thanks, naturezprofit!)

[2.2.0] - 2018-02-16
----------
Added
- Ability to prune members no longer in group—useful when you want to clean up the list when tracking is off.

Fixed
- Various UI and layout bugs
- Issue where tracking status would not persist between reloads

[2.1.0] - 2018-02-12
----------
Changed
- Supported API version to 100022

[2.0.0] - 2018-01-13
----------
Changed
- /fpreset command to /fp reset

Fixed
- Issue where tracking would not turn off even when user ran pause or stop command
- Instances where settings were not shared across modules

[1.3.0] - 2018-01-01
----------
Added
- Items button and window to view all items looted by a particular member
- Settings to toggle group or self item tracking
- Ability to toggle all loot tracking via /fp start|[pause|stop]

Changed
- Loot event handler (specifically value aggregation) to improve performance
- LibAddonMenu 2.0 version from r17 to r25

Fixed
- Serious (usually silent) bug/performance issue which occurred when a member looted an item

v1.2.2
----------
Fixed issue with chat logging formatting that caused logs to break while using pChat

v1.2.1
----------
Fixing zip folder structure to support Minion installs

v1.2.0
----------
Update API to 100021 for Clockwork City
Archived Files (5)
File Name
Version
Size
Uploader
Date
2.13.0
21kB
Aldanga
10/19/19 03:15 PM
2.12.1
21kB
Aldanga
08/07/19 05:20 PM
2.12.0
21kB
Aldanga
08/07/19 10:50 AM
2.11.2
22kB
Aldanga
04/02/19 05:46 AM
2.11.1
23kB
Aldanga
04/01/19 08:53 PM


Post A Reply Comment Options
Unread 02/20/18, 02:36 AM  
naturezprofit

Forum posts: 0
File comments: 1
Uploads: 0
For those using TTC you can make these changes to "FarmingParty/loot/Loot.lua"

Change this
Lua Code:
  1. local function GetMMPrice(itemLink)
  2.     if (MasterMerchant == nil) then
  3.         return nil
  4.     end
  5.     local itemStats = MasterMerchant:itemStats(itemLink, false)
  6.     if (itemStats == nil) then
  7.         return itemStats
  8.     else
  9.         return itemStats.avgPrice
  10.     end
  11. end
  12.  
  13. local function GetItemPrice(itemLink)
  14.     local price = GetATTPrice(itemLink) or GetMMPrice(itemLink)
  15.     if (price == nil or price == 0) then
  16.         price = GetItemLinkValue(itemLink, true)
  17.     end
  18.     return price
  19. end

To this (copy paste is fine)

Lua Code:
  1. local function GetMMPrice(itemLink)
  2.     if (MasterMerchant == nil) then
  3.         return nil
  4.     end
  5.     local itemStats = MasterMerchant:itemStats(itemLink, false)
  6.     if (itemStats == nil) then
  7.         return itemStats
  8.     else
  9.         return itemStats.avgPrice
  10.     end
  11. end
  12.  
  13. local function GetTTCPrice(itemLink)
  14.     if (TamrielTradeCentrePrice == nil) then
  15.         return nil
  16.     end
  17.     local priceInfo = TamrielTradeCentrePrice:GetPriceInfo(itemLink)
  18.     if (priceInfo == nil) then
  19.         return priceInfo
  20.     else
  21.         return priceInfo.SuggestedPrice
  22.     end
  23. end
  24.  
  25. local function GetItemPrice(itemLink)
  26.     local price = GetATTPrice(itemLink) or GetMMPrice(itemLink) or GetTTCPrice(itemLink)
  27.     if (price == nil or price == 0) then
  28.         price = GetItemLinkValue(itemLink, true)
  29.     end
  30.     return price
  31. end

Hopefully this helps others like it did for me
Report comment to moderator  
Reply With Quote
Unread 02/17/18, 12:20 PM  
Aldanga
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 306
Uploads: 5
Originally Posted by RavenMind
I can't believe nobody has commented on this wonderful add-on. Well let me be the first then to thank you! It's been a great tool, and one of my must-haves!
Thanks! I wrote this because I needed it for events in Food and Stuff, my trading guild on PC NA. It wasn't ever targeted toward the general public, but I'm super glad someone else has found it useful.

If you run into issues or have suggestions for how to make Farming Party better, please let me know. I'm always looking for ways to tweak it and make it more useful.
Report comment to moderator  
Reply With Quote
Unread 02/16/18, 10:01 PM  
RavenMind
 
RavenMind's Avatar

Forum posts: 6
File comments: 391
Uploads: 0
I can't believe nobody has commented on this wonderful add-on. Well let me be the first then to thank you! It's been a great tool, and one of my must-haves!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.