오류메시지 삭제(노란색 메시지는 정상출력)
/run local U=UIErrorsFrame;U:UnregisterAllEvents()U:RegisterEvent("SYSMSG")U:RegisterEvent("UI_INFO_MESSAGE")
초상화를 직업 아이콘으로 변경(매크로 255자 제한으로 2개 별도로 입력)
/run UFP = "UnitFramePortrait_Update"; UICC = "InterfaceGluesCharacterCreateUI-CharacterCreate-Classes"; CIT = CLASS_ICON_TCOORDS
/run hooksecurefunc(UFP,function(self) if self.portrait then local t = CIT[select(2,UnitClass(self.unit))] if t then self.portrait:SetTexture(UICC) self.portrait:SetTexCoord(unpack(t)) end end end)
매크로 초기화
/reload
인터페이스에서 투구 및 망토 숨기기하고 아래 매크로 적용시 비전투에는 투구 및 망토 숨김 상태
전투시에는 투구 및 망토 보이기 상태로 자동 설정
투구
/run local C=CreateFrame("Frame");D="PLAYER_REGEN_DISABLED";E="PLAYER_REGEN_ENABLED";C:RegisterEvent(E);C:RegisterEvent(D);C:SetScript("OnEvent",function(self,event) if event==D then ShowHelm(true) else ShowHelm(false);end;end)
망토
/run local C=CreateFrame("Frame");D="PLAYER_REGEN_DISABLED";E="PLAYER_REGEN_ENABLED";C:RegisterEvent(E);C:RegisterEvent(D);C:SetScript("OnEvent",function(self,event) if event==D then ShowCloak(true) else ShowCloak(false);end;end)
단축창 사이드 독수리 그림 제거 및 경험치바 제거
/script MainMenuBarLeftEndCap:Hide();
/script MainMenuBarRightEndCap:Hide();
/run MainMenuMaxLevelBar0:Hide()
/run MainMenuMaxLevelBar1:Hide()
/run MainMenuMaxLevelBar2:Hide()
/run MainMenuMaxLevelBar3:Hide()
회색템 팔기
/run local p,N,c,n=0 for b=0,4 do for s=1,GetContainerNumSlots(b) do n=GetContainerItemLink(b,s) if n and string.find(n,"9d9d9d") then N={GetItemInfo(n)} c=GetItemCount(n) p=p+(N[11]*c)UseContainerItem(b,s) print(n) end end end print(GetCoinText(p))
추가팁1:
매크로 이름을 ㄱ, 한자, 1(공백)으로 하고
매크로 내부에 #showtooltip을 적용시키고 매크로아이콘을 ?으로하면
매크로이름이 안써져있고 매크로에 적용된 스킬로 매크로 아이콘이 설정되어있어
매크로티가 전혀 안나는 매크로를 만들수있습니다.
이걸 응용하면 아이콘이 마음에안들거나.
눈에 잘안띠는 스킬을 자기마음대로 아이콘을 설정할수있씀미다.
추가팁2:
모든 명령어 및 매크로는 아이콘화해서 사용하세요. 저같은경우는 기본단축바를 아래로 넘기면 2번째 단축아이콘바가
나타나는데 거기다가 매크로 아이콘집어넣고 단축키로 일괄설정한다음에 다시안보이게해둡니다.