任務進度通報(進遊戲按一次即可) /run local f=CreateFrame("FRAME")f:RegisterEvent("UI_INFO_MESSAGE")f:SetScript("OnEvent",function(s,e,a1,a2)SendChatMessage(a2,"say") end) 拾取通報(進遊戲按一次即可) /run local f=CreateFrame("FRAME")f:RegisterEvent("CHAT_MSG_LOOT")f:SetScript("OnEvent",function(s,e,a1,a2)SendChatMessage(a1,"say") end) 若不喜歡白字喊話,可將後面的say 改成 party, guild, instance_chat, raid 等等 |