WOW常用的拍卖宏,就是在AH用的,NGA和178上都有一些...1
发布网友
发布时间:2023-11-17 07:05
我来回答
共4个回答
热心网友
时间:2024-03-08 09:31
AH取消拍卖的宏(分别对应取消不同时间,不取消已经被竞价的商品)
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==1 then CancelAuction(i)end end 短
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==2 then CancelAuction(i)end end 中
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==3 then CancelAuction(i)end end 长
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==4 then CancelAuction(i)end end 非常长
这个是简易的/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t<=2 then CancelAuction(i)end end
修改1 234 分别对应短 中 长很长 来取消 不会取消被竞拍的物品
回头我帮你试试专门的插件拍卖助手Auctioneer,说是JS专用的
看看效果如何顺便尝试做做?
热心网友
时间:2024-03-08 09:29
很简单啊。
/大喊 XXXXXXX
/大喊 XXXXXXX
/大喊 XXXXXXX
/大喊 XXXXXXX
/大喊 XXXXXXX
/大喊 XXXXXXX
热心网友
时间:2024-03-08 09:32
AH取消拍卖的宏(分别对应取消不同时间,不取消已经被竞价的商品)
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==1 then CancelAuction(i)end end 短
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==2 then CancelAuction(i)end end 中
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==3 then CancelAuction(i)end end 长
/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t==4 then CancelAuction(i)end end 非常长
这个是简易的/run local o,j,h,t="owner",GetNumAuctionItems("owner")for i=j,1,-1 do h,t=select(11,GetAuctionItemInfo(o,i)),GetAuctionItemTimeLeft(o,i)if not h and t and t<=2 then CancelAuction(i)end end
修改1 234 分别对应短 中 长很长 来取消 不会取消被竞拍的物品
回头我帮你试试专门的插件拍卖助手Auctioneer,说是JS专用的
看看
热心网友
时间:2024-03-08 09:28
LS正解, 一楼真可爱