72 lines
2.1 KiB
Markdown
72 lines
2.1 KiB
Markdown
# WyntrWear
|
|
|
|
A World of Warcraft addon for Wrath of the Lich King (WotLK, patch 3.2). Written in Lua, June 2009.
|
|
|
|
**Author:** Wyntrfylth of Skywall, `<Vendor Trash>`
|
|
|
|
---
|
|
|
|
## What It Does
|
|
|
|
WyntrWear reminds level 80 characters to equip a tabard when entering a 5-man instance, so you
|
|
don't waste a full run accumulating rep with the wrong faction.
|
|
|
|
On entering an instance it displays in the default chat frame either the name of the tabard you are
|
|
wearing, or a warning that you have no tabard equipped. If no tabard is equipped, a UI frame appears
|
|
with a checkbox to disable future checks for that character (useful for mains who are already exalted
|
|
with everything).
|
|
|
|
It also tracks reputation earned during the run and reports it when you swap or unequip your tabard.
|
|
|
|
---
|
|
|
|
## Commands
|
|
|
|
| Command | Effect |
|
|
|---|---|
|
|
| `/ww status` | Reports current tabard and standing with its faction |
|
|
| `/ww check` | Re-enables the instance-entry check if you previously disabled it |
|
|
| `/wyntrwear` | Same as `/ww` |
|
|
|
|
---
|
|
|
|
## Installation
|
|
|
|
Drop the `WyntrWear/` folder into your `Interface/AddOns/` directory and reload your UI.
|
|
|
|
**Interface version:** 3.2.0 (30200) — Wrath of the Lich King
|
|
|
|
---
|
|
|
|
## Supported Factions
|
|
|
|
WyntrWear tracks reputation for the five WotLK instance tabard factions:
|
|
|
|
- Argent Crusade
|
|
- Knights of the Ebon Blade
|
|
- Kirin Tor
|
|
- The Wyrmrest Accord
|
|
- Horde Expedition
|
|
|
|
---
|
|
|
|
## Files
|
|
|
|
| File | Purpose |
|
|
|---|---|
|
|
| `WyntrWear.lua` | All addon logic — event handling, rep tracking, slash commands |
|
|
| `WyntrWear.xml` | UI frame definition — the checkbox panel shown on instance entry |
|
|
| `WyntrWear.toc` | WoW addon manifest — interface version, metadata, load order |
|
|
| `wyntrwear.JPG` | Screenshot — addon UI in-game |
|
|
| `ww2.JPG` | Screenshot — rep tracking output in chat frame |
|
|
|
|
---
|
|
|
|
## Background
|
|
|
|
Six level-80 toons. A lot of instancing. A persistent habit of forgetting to swap tabards before
|
|
the first pull, then noticing mid-run that Horde Expedition rep had been accumulating instead of
|
|
Argent Crusade. WyntrWear was the fix.
|
|
|
|
Version 1.2.2 archived from the original distribution package.
|