Raid List Export
Raid List Export
Exports a list of players currently in the raid to XML. Very lightweight, doesn't do any more than advertised.
Usage
Type /rle or /raidlistexport to open the main RLE window. If you are not in a raid (or you are only in a party), the command will fail, otherwise a window will appear with the export data pre-selected. Simply press Ctrl+C to copy the export data.
Sample data:
<?xml version="1.0" encoding="utf-8"?> <raid> <group id="1"> <player> <name>Sampleplayer</name> <classname>DRUID</classname> <level>80</level> </player> <player> <name>Anotherplayer</name> <classname>PRIEST</classname> <level>80</level> </player> </group> <group id="2"> </group> <group id="3"> </group> <group id="4"> </group> <group id="5"> </group> <group id="6"> </group> <group id="7"> </group> <group id="8"> </group> </raid>
Notes
Currently the only data exported is the player name, class and level. Let me know if you want any more details such as offline status, zone, etc - at this stage the addon is only used for an internal tool and additional data is not required for our purposes. Notice that the addon exports all groups in the raid regardless of whether a player is in that group. This is likely not going to change. Please beware that the output format is liable to change in future based on my own requirements.
Export format changelog
- v0.1.0 - original format.
- v0.1.1 - "class" changed to "classname". Class names are now non-localised internal versions (i.e. english all-caps e.g. "PRIEST").
Comments