我看各位应该都有需求。
别在正式服试,正式服试了一切后果,比如说卖掉你身上所有物品我不负责。
这些宏按一次就可以了,没有任何提示,不想用了小退下就可以了。
卖东西刷钱宏,打开NPC就自动全部卖光,不想卖五行石和精力就去掉注解。
每次卖完小退一次宏失效,按一次即可无任何提示。
/script
local SellGrayItem = function(nNpcID, nShopID)
local me = GetClientPlayer()
for dwBox = 1, BigBagPanel_nCount do
local dwSize = me.GetBoxSize(dwBox) - 1
for dwX = 0, dwSize do
local item = me.GetItem(dwBox, dwX)
if item and item.bCanTrade then
local nCount = 1
if item.nGenre == ITEM_GENRE.EQUIPMENT and item.nSub == EQUIPMENT_SUB.ARROW then --远程武器
nCount = item.nCurrentDurability
elseif item.bCanStack then
nCount = item.nStackNum
end
--if not string.find(item.szName,"五行石·") and not string.find(item.szName,"佳·回元餐") then
SellItem(nNpcID, nShopID, dwBox, dwX, nCount)
--end
end
end
end
end
RegisterEvent("SHOP_OPENSHOP", function()
local nNpcID, nShopID = arg4, arg0
SellGrayItem(nNpcID, nShopID)
Output("done")
end)