DuelTracker
Description
DuelTracker is a World of Warcraft AddOn which collects information about duels that the user observes. Specifically, it collects information about the names, races, classes, levels, and guilds of the duelers along with the type of victory (fled or defeated). It can then produce statistics from the data which are presented to the user or to other players (if configured to do so) using a text/message-oriented interface. Advanced users can also export statistics and records in CSV format for use by other programs.
Features
- Unobtrusive operation (unnoticeable under most circumstances, configurable)
- Supports multiple mechanisms of gathering information (from who queries and optionally targeting)
- Supports messaging statistics to other players by request (configurable)
- Supports export to CSV formats (requires Lua interpreter)
Development Status
Usable, but lacking features. I have not been playing WoW much lately, and for that reason, I haven't put much effort into DuelTracker for a while. Therefore, I encourage anyone interested in developing it further to go for it and feel free to send me any development questions.
License
Supported Systems
- Any system running World of Warcraft.
Dependencies
- A Lua interpreter required for exporting to CSV.
Installing
- Download it
- Unzip it into the World of Warcraft Interface AddOns directory (usually C:\Program Files\World of Warcraft\Interface\AddOns)
- Run World of Warcraft and confirm that it is properly loaded by clicking on the AddOns button from the Character Selection Screen
Example Usage
- Type
/dueltracker help
in the chat window for a list of possible commands. - Type
/dueltracker config
in the chat window to view the current configuration options. - Type
/dueltracker stats
in the chat window to view the duel statistics for your player or/dueltracker stats Gandalf
to view the statistics for the player named Gandalf. - Whisper
.duel stats Gandalf
to someone running DuelTracker, which is configured to respond to whispers for information, to get the statistics for the player named Gandalf from that player's records.
Configuration
DuelTracker can be configured by typing /dueltracker config [option
value]
into the chat window. This will set option to
value. For a list of available configuration options, type
/dueltracker config
. A complete explanation of the options
is provided in the README.txt file.
Known Bugs
If the user sends a who request at the same time that DuelTracker does the user will not see any results from their query. This is currently minimized as much as possible by using a player information cache and by limiting the time that the event is disconnected as much as possible. The user may also configure DuelTracker to use targeting for gathering information which will further reduce the appearance of this bug.
Planned Features
- Synchronization between players (timestamping already in place)
- Improve resolution of timestamping using system clock and OnUpdate
- GUI tab for statistics in the player interface box
- Integration with graphical configuration systems
- Remove need to install a Lua interpreter to export data...