2012.08.16 之前物品信息的nUild 没放出来,所以用不了,但是不知道什么时候又放出来了,于是就可以用了。
下面6月份的宏也是可以用的,但是没有隐藏游戏的提示,界面可能有点乱,于是改了一下:
有了这个1010的宏:
/script sv2=sv2 or nil
local s1,s2="打开","关闭."
local ms=function(str) OutputMessage("MSG_SYS","瑰石查看宏已"..str.."\n") end
st_oit=function (i,p1,p2,bb,x,y) OutputItemTip(UI_OBJECT_ITEM_INFO,0,p1,p2,{x+200,y,1,1},bb) end
if sv2 then
sv2b=not sv2b
if sv2b then ms(s1) else ms(s2) end
else
sv2=AuctionPanel.OnItemMouseEnter
function AuctionPanel.OnItemMouseEnter()
sv2()
if sv2b and this.nItemID then
local dt,n1,n2,n3=this:GetObject()
local cx,cy=this:GetAbsPos()
local nI =GetItemInfo(n2,n3)
local ns,ne =string.find(nI.szName,"瑰石")
if ns and ne then
local dsc=Table_GetItemDesc(nI.nUiId)
local m={x=cx+38,y=cy-12,szOption="",{szOption=nI.szName,fnMouseEnter=function(i) st_oit(i,n2,n3,false,cx,cy) end},{bDevide=true}}
local szs = string.gsub(dsc, "this\.dwTabType\=(%d+) this.dwIndex=(%d+) ",
function(nit,nid)
local itm=GetItemInfo(nit,nid)
table.insert(m,{szOption=itm.szName,fnMouseEnter=function(i) st_oit(i,nit,nid,false,cx,cy) end})
end)
HideTip()
PopupMenu(m)
end
end
end
sv2b=true
ms(s1)
end