A Windower addon for Final Fantasy XI that automatically purchases items from a Conquest Points vendor when you open the shop window.
Conquest Points accumulate quickly but are easy to forget about. PointsToGil lets you configure a list of items to buy from CP vendors and purchases them automatically the moment the shop window opens — no clicking required.
- Copy the
PointsToGilfolder into your Windoweraddonsdirectory. - Load the addon in-game:
//lua load PointsToGil - To load automatically on startup, add the following to your
init.txt:lua load PointsToGil
- Configure which items to buy and how many:
//ptg buy gausebit grass 12 //ptg buy boyahda moss 6 - Open the Conquest Points vendor NPC in-game.
- The addon purchases your configured items automatically when the shop window opens.
All commands use the prefix //ptg.
| Command | Description |
|---|---|
buy <item name> [qty] |
Add an item to the auto-buy list. Quantity defaults to 1. |
remove <item name> |
Remove an item from the buy list. |
list |
Display all configured items and quantities. |
clear |
Remove all items from the buy list. |
auto |
Toggle automatic purchasing on or off (default: on). |
go |
Manually trigger purchases from the currently open shop. |
debug |
Print the contents of the last opened shop — useful for verifying the addon is reading the vendor correctly. |
//ptg buy gausebit grass 12
//ptg buy boyahda moss 6
//ptg list
//ptg remove boyahda moss
//ptg auto
//ptg go
Settings are saved automatically to data/settings.xml inside the addon folder. You can edit this file directly, but the in-game commands are the recommended way to manage the buy list.
- Auto-buy triggers on any shop opening. Make sure
autois off (//ptg auto) before opening a regular gil-based NPC shop if you don't want to attempt purchases there. - If
//ptg debugshowsShop opened with 0 items, the incoming shop packet structure may differ on your server. Open an issue with the raw packet data so the offsets can be adjusted. - Item names are matched case-insensitively against the English names in Windower's resource files. Auto-translate names are not required.
- Windower 4
- Windower Lua libraries:
config,resources,strings,tables(all included with a standard Windower installation)