Compare commits
8 Commits
v50400-1.6
...
v50400-1.7
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ccff635a0 | |||
| 2298e37175 | |||
| 191ee4dd73 | |||
| 0ab9c6cff0 | |||
| 9ae32b36d1 | |||
| 3a0eef76dc | |||
| 6c519840ca | |||
| 0501487428 |
@ -1,9 +1,8 @@
|
|||||||
## Interface: 50400
|
## Interface: 50400
|
||||||
## Author: Ramble (modified by Isharra) (updated by thegabbert) (converted to Ace3 by Takika)
|
## Author: Ramble (modified by Isharra) (updated by thegabbert) (converted to Ace3 by Takika)
|
||||||
## Version: 51
|
|
||||||
## Title: MyBags |cff007FFF -Ace3-|r
|
## Title: MyBags |cff007FFF -Ace3-|r
|
||||||
## Notes: Complete Replacement for Inventory and Bank Bags.
|
## Notes: Complete Replacement for Inventory and Bank Bags.
|
||||||
## OptionalDeps: MyBagsCache, DataStore_Containers
|
## OptionalDeps: MyBagsCache, DataStore, DataStore_Containers, DataStore_Characters
|
||||||
## SavedVariables: MyInventoryDB, MyBankDB, MyEquipmentDB
|
## SavedVariables: MyInventoryDB, MyBankDB, MyEquipmentDB
|
||||||
|
|
||||||
Embeds.xml
|
Embeds.xml
|
||||||
@ -14,4 +13,3 @@ MyBagsCore\MyBags.xml
|
|||||||
MyInventory\MyInventory.xml
|
MyInventory\MyInventory.xml
|
||||||
MyBank\MyBank.xml
|
MyBank\MyBank.xml
|
||||||
MyEquipment\MyEquipment.xml
|
MyEquipment\MyEquipment.xml
|
||||||
|
|
||||||
|
|||||||
@ -9,9 +9,12 @@ local tonumber, pairs = tonumber, pairs
|
|||||||
|
|
||||||
local function GetItemInfoFromLink(l)
|
local function GetItemInfoFromLink(l)
|
||||||
if (not l) then
|
if (not l) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local c, id, il, n = select(3, strfind(l, "|cff(%x+)|Hitem:(%-?%d+)([^|]+)|h%[(.-)%]|h|r"))
|
|
||||||
|
local c, t, id, il, n = select(3, strfind(l, "|cff(%x+)|H(%l+):(%-?%d+)([^|]+)|h%[(.-)%]|h|r"))
|
||||||
|
|
||||||
|
-- return n, c, id .. il, id, t
|
||||||
return n, c, id .. il, id
|
return n, c, id .. il, id
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -406,6 +406,7 @@ function MyBank:OnEnable()
|
|||||||
end
|
end
|
||||||
MyBankFramePortrait:SetTexture("Interface\\Addons\\MyBags\\Skin\\MyBankPortrait")
|
MyBankFramePortrait:SetTexture("Interface\\Addons\\MyBags\\Skin\\MyBankPortrait")
|
||||||
StaticPopupDialogs["PURCHASE_BANKBAG"] = {
|
StaticPopupDialogs["PURCHASE_BANKBAG"] = {
|
||||||
|
preferredIndex = 3;
|
||||||
text = TEXT(CONFIRM_BUY_BANK_SLOT),
|
text = TEXT(CONFIRM_BUY_BANK_SLOT),
|
||||||
button1 = TEXT(YES),
|
button1 = TEXT(YES),
|
||||||
button2 = TEXT(NO),
|
button2 = TEXT(NO),
|
||||||
|
|||||||
Reference in New Issue
Block a user