You've probably heard about the duping thing. Well, it's been fairly well proven that the screenshot is fake. But I thought I'd explain how to fake it properly.
I've split the following into four macros. You can copy and paste them into macro slots, and then run them while the AH window is open.
/script local i,n,b,c; for i=1, 7 do n = "BrowseButton"..i; getglobal(n):Show(); b = getglobal(n.."Name"); b:SetText("Krol Blade"); c = ITEM_QUALITY_COLORS[4]; b:SetVertexColor(c.r, c.g, c.b); getglobal(n.."ClosingTimeText"):SetText("Long"); end /script local i,n; BrowseNoResultsText:Hide(); for i=1, 7 do n = "BrowseButton"..i; getglobal(n.."ItemIconTexture"):SetTexture( "Interface\\Icons\\INV_Sword_18"); getglobal(n.."Level"):SetText("51"); end /script local i,n,m; for i=1, 7 do n = "BrowseButton"..i; getglobal(n.."ItemCount"):Hide(); m=n.."MoneyFrame"; getglobal(m):SetPoint("RIGHT",n,"RIGHT",10,10); MoneyFrame_Update(m, 3009500); getglobal(n.."YourBidText"):Hide(); end /script local i,n,m; for i=1, 7 do n = "BrowseButton"..i; m=getglobal(n.."BuyoutMoneyFrame"); m:Show(); MoneyFrame_Update(m:GetName(), 3200000); getglobal(n.."BuyoutText"):Show(); getglobal(n.."HighBidder"):SetText("CmdrTaco"); end
What does that do? Hmm... CmdrTaco's up to something...