Update README.md
This commit is contained in:
@@ -74,3 +74,93 @@ No extra windows or complicated configuration are required.
|
|||||||
* ✔ Lightweight with minimal impact on performance.
|
* ✔ Lightweight with minimal impact on performance.
|
||||||
|
|
||||||
Whether you're flipping valuable items, deciding what to vendor, or simply curious about an item's worth, **Relationships Auction Price** provides quick, reliable Auction House pricing directly where you need it—inside every item tooltip.
|
Whether you're flipping valuable items, deciding what to vendor, or simply curious about an item's worth, **Relationships Auction Price** provides quick, reliable Auction House pricing directly where you need it—inside every item tooltip.
|
||||||
|
|
||||||
|
# Chat Commands
|
||||||
|
|
||||||
|
The addon provides the following slash commands:
|
||||||
|
|
||||||
|
| Command | Description |
|
||||||
|
| --------------------- | ---------------------------------------------------------------------------------------- |
|
||||||
|
| `/rap scan` | Starts a full Auction House scan using the current filters. |
|
||||||
|
| `/rap fast` | Starts a faster scan with reduced delay between pages. |
|
||||||
|
| `/rap continue` | Continues the last interrupted scan from the saved checkpoint. |
|
||||||
|
| `/rap stop` | Stops the current scan. Partial results are preserved. |
|
||||||
|
| `/rap clear` | Clears all locally stored price data for the current realm and faction. |
|
||||||
|
| `/rap stats` | Displays statistics for local and shared price data. |
|
||||||
|
| `/rap show <itemID>` | Shows stored data for a specific item ID. |
|
||||||
|
| `/rap export` | Exports collected data into `RAP_SHARED_DATA_EXPORT` for creating a new `PriceData.lua`. |
|
||||||
|
| `/rap exportstring` | Exports data as a legacy string stored in `RelationshipsAuctionPriceDB.export`. |
|
||||||
|
| `/rap name <text>` | Applies a name filter to the next scan. |
|
||||||
|
| `/rap name clear` | Removes the name filter. |
|
||||||
|
| `/rap class <index>` | Applies a class filter using the Auction House class index. |
|
||||||
|
| `/rap class clear` | Removes the class filter. |
|
||||||
|
| `/rap continue clear` | Deletes the saved scan checkpoint so future scans start from page 1. |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# See The Results
|
||||||
|
|
||||||
|
After completing a scan:
|
||||||
|
|
||||||
|
1. Run:
|
||||||
|
|
||||||
|
```text
|
||||||
|
/reload
|
||||||
|
```
|
||||||
|
|
||||||
|
# Exporting Price Data
|
||||||
|
|
||||||
|
After completing a scan:
|
||||||
|
|
||||||
|
1. Run:
|
||||||
|
|
||||||
|
```text
|
||||||
|
/rap export
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Reload your UI** to save the export:
|
||||||
|
|
||||||
|
```text
|
||||||
|
/reload
|
||||||
|
```
|
||||||
|
|
||||||
|
> **⚠️ Important**
|
||||||
|
>
|
||||||
|
> You **must** use `/reload` after running `/rap export`.
|
||||||
|
>
|
||||||
|
> The export is only written to your SavedVariables file when the UI reloads (or you log out). Without reloading, no export data will be saved.
|
||||||
|
|
||||||
|
3. Open:
|
||||||
|
|
||||||
|
```text
|
||||||
|
WTF/Account/<YourAccount>/SavedVariables/RelationshipsAuctionPrice.lua
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Copy the entire:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
RAP_SHARED_DATA_EXPORT = {
|
||||||
|
...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
5. Paste it into:
|
||||||
|
|
||||||
|
```text
|
||||||
|
AddOns/RelationshipsAuctionPrice/PriceData.lua
|
||||||
|
```
|
||||||
|
|
||||||
|
6. Rename:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
RAP_SHARED_DATA_EXPORT
|
||||||
|
```
|
||||||
|
|
||||||
|
to
|
||||||
|
|
||||||
|
```lua
|
||||||
|
RAP_SHARED_DATA
|
||||||
|
```
|
||||||
|
|
||||||
|
Your shared pricing database is now ready for distribution.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user