作 者 | Germbread, Naquadah @ Curse |
---|---|
譯 者 | BNS, 彩虹ui |
提供多種過濾方式,過濾已經學會、已經購買過、不能使用的物品、裝備部位、塑形外觀...等等。
也有快速賣垃圾和不要的物品功能,並且可以自訂要賣出和不要賣出的物品清單。
使用方法:
- 在商人視窗中選擇過濾方式 > 快速賣出設定,設定要賣出和不要賣出的物品清單。
- 從 Esc > 選項> 插件 > 商人,開啟其他設定選項。
特別注意:這個插件不會自動賣垃圾,需要手動按一下快速賣出按鈕。
要使用自動賣垃圾請在【功能百寶箱】插件的設定選項中開啟/關閉。
檔案名稱 | 檔案版本 | 檔案大小 | 下載次數 | 上傳時間 | 註 記 | 上傳者 | |||
---|---|---|---|---|---|---|---|---|---|
ExtVendor-10.1.5-Fix2.zip 時光的裂痕 | 10.1.5 修正版2 | 62.10 KB | 406 | 2023-07-14 | - 修正商人視窗左下角的材質和買回物品圖示的位置。 | Dololo |
檔案名稱 | 檔案版本 | 檔案大小 | 下載次數 | 上傳時間 | 註 記 | 上傳者 | |||
---|---|---|---|---|---|---|---|---|---|
ExtVendor-10.1.5-Fix.zip 時光的裂痕 | 10.1.5 修正版 | 62.06 KB | 128 | 2023-07-13 | - 支援魔獸世界 10.1.5。 - 自行修正相容性的版本。 |
Dololo | |||
ExtVendor.zip 巨龍崛起 | 61.92 KB | 394 | 2023-01-26 | - 支援魔獸世界 10.0.5。 - 暫時停用自動打開背包的功能(OpenAllBags和 ContainerFrame_UpdateAll) 因為會造成汙染問題,需要等暴雪修正。 - 嘗試修正快速賣出按鈕(好像還是不能用)。 |
Dololo | ||||
ExtVendor.zip 巨龍崛起 | 61.73 KB | 624 | 2022-11-17 | - 支援魔獸世界 10.0.2。 - 由另一個人接手維護的版本。 |
Dololo | ||||
ExtVendor-1.8.8-fix.zip 巨龍崛起 | 1.8.8-fix | 61.17 KB | 578 | 2022-10-26 | - 支援魔獸世界 10.0.0。 - 自行修正相容性的版本。 如有發生錯誤請留言回報。 |
Dololo |
Kenion · 2023-07-13 23:41:19
更新後 好像有些不同.這是正常?
謝謝大大
Dololo · 2023-07-13 23:52:02
因為我功力不夠,只能讓它不會報錯誤而堪用,沒有針對遊戲改版的新功能來做調整。如果覺得不好用,請先關閉這個插件等原作者更新或其他人的修改版。
Kenion · 2023-07-14 00:00:55
感謝大大
我先用著 等你再更新
辛苦大大了😚
我先用著 等你再更新
辛苦大大了😚
Dololo · 2023-07-14 00:48:30
剛試著修正了一下,請重新下載試試看。
如果還有發現什麼奇怪的地方,請跟我說,3Q
如果還有發現什麼奇怪的地方,請跟我說,3Q
Kenion · 2023-07-14 15:56:33
沒問題了.謝謝大大,感恩😊
MayHill · 2022-11-04 16:06:20
快速賣出舊版本裝備的功能 可以直接改QuickVendor.lua 裡的GEAR_OUTLEVEL_TABLE 簡易修復使用在60級滿等的角色上 我自己是沒發現問題 非滿等角色就不知道了
打舊本的時候方便很多 以下資訊供您參考
local GEAR_OUTLEVEL_TABLE = {
[0] = 30, -- vanilla gear uses a different check, this is here just because
[1] = 35, -- BC gear is outdated when player reaches level 90
[2] = 35, -- wotlk gear is also outdated when player reaches level 90
[3] = 35, -- cata gear is outdated when player reaches level 100
[4] = 40, -- pandaria gear is also outdated when player reaches level 100
[5] = 45, -- draenor gear is outdated when player reaches level 110
[6] = 50, -- legion gear is outdated when player reaches level 120
[7] = 60, -- BFA gear is outdated when player reaches level 130
[8] = 130, -- ...
[9] = 130,
[10] = 130,
};
Dololo · 2022-11-04 17:15:36
感謝分享~~
50級以前可以隨意選擇地圖來練等,所以也沒有分哪個地圖一定是幾等,所以是不是該把 1~7 全部寫 60 呢? 🤔
50級以前可以隨意選擇地圖來練等,所以也沒有分哪個地圖一定是幾等,所以是不是該把 1~7 全部寫 60 呢? 🤔
MayHill · 2022-11-04 17:46:30
以下是過期裝備的判斷function
上面的table應該只是給一個數值讓玩家等級帶進判斷而已 判斷的基礎是裝等還有裝備需求等級
如果全部60 會造成非滿等角色 拿到已經為過期裝備的物品 但依然被判斷為非過期裝備
老實說我是覺得沒啥太大差別 畢竟用這個功能的人應該都是滿等回去刷舊本
-- *** Outdated gear ***
if (((quality == 3) or (quality == 4)) and ((itemClassId == LE_ITEM_CLASS_ARMOR) or (itemClassId == LE_ITEM_CLASS_WEAPON)) and (equipSlot ~= "")) then
if (EXTVENDOR_DATA['config']['quickvendor_oldgear']) then
-- always ignore items from the account's expansion level (or higher)
if (expacID < GetAccountExpansionLevel()) then
-- ignore items with a minimum level requirement within 10 levels of the player, regardless of item level or expac (timewarped fix)
if (itemReqLevel < (playerLevel - 10)) then
if ((playerLevel >= (GEAR_OUTLEVEL_TABLE[expacID] or 999)) or ((expacID == 0) and (playerLevel >= (itemLevel + 12)))) then
return true, L["QUICKVENDOR_REASON_OUTDATED_GEAR"], "Outdated rare/epic equipment";
BTW 我只看大概 也不是很懂code 以上分析都是憑感覺豪洨的 實際涉及的判斷function可能根本跟我說的運作方式不一樣www
上面的table應該只是給一個數值讓玩家等級帶進判斷而已 判斷的基礎是裝等還有裝備需求等級
如果全部60 會造成非滿等角色 拿到已經為過期裝備的物品 但依然被判斷為非過期裝備
老實說我是覺得沒啥太大差別 畢竟用這個功能的人應該都是滿等回去刷舊本
-- *** Outdated gear ***
if (((quality == 3) or (quality == 4)) and ((itemClassId == LE_ITEM_CLASS_ARMOR) or (itemClassId == LE_ITEM_CLASS_WEAPON)) and (equipSlot ~= "")) then
if (EXTVENDOR_DATA['config']['quickvendor_oldgear']) then
-- always ignore items from the account's expansion level (or higher)
if (expacID < GetAccountExpansionLevel()) then
-- ignore items with a minimum level requirement within 10 levels of the player, regardless of item level or expac (timewarped fix)
if (itemReqLevel < (playerLevel - 10)) then
if ((playerLevel >= (GEAR_OUTLEVEL_TABLE[expacID] or 999)) or ((expacID == 0) and (playerLevel >= (itemLevel + 12)))) then
return true, L["QUICKVENDOR_REASON_OUTDATED_GEAR"], "Outdated rare/epic equipment";
BTW 我只看大概 也不是很懂code 以上分析都是憑感覺豪洨的 實際涉及的判斷function可能根本跟我說的運作方式不一樣www
blue · 2023-09-26 00:01:46
請問下有類似的ui可以擴大買回的頁面? 剛剛手殘點到商品之後被自動賣垃圾洗掉訊息 想看有沒有類似ui可以擴大買回來的範圍三皈依 · 2023-09-26 02:33:22