클래식 로크홀라 서버에서는 거래창이 너무 빨리 넘어가는 바람에 제대로 확인을 못합니다.
그래서 특정 대상을 차단하자니 캐릭터마다 해야 하는 번거로움이 있어서 스크립트를 찾아봤습니다.

※ 매크로
/run ChatFrame_AddMessageEventFilter("CHAT_MSG_CHANNEL",function(s,e,m,a)if(a=="특정대상-로크홀라"or a=="특정대상")then return true end end)

※ 스크립트
ChatFrame_AddMessageEventFilter("CHAT_MSG_CHANNEL", function(self, event, msg, author)
if (author == "특정대상-로크홀라"or author == "특정대상") then
return true
end
end)