여기저기서 줍줍해서 모은 간단하지만, 필요하신 분께 도움이 되고자 정리하여 올려 봄 :D




1. Player, Target, Focus(주시) 창 크기 조절
    : 괄호 안의 숫자로 크기 변경 가능 ex) (1.0);기본 크기→ (1.3)

/run PlayerFrame:SetScale(1.3)
/run TargetFrame:SetScale(1.3)
/run FocusFrame:SetScale(1.1)


2. Buff, Debuff 크기 조절; 우측 상단 Icon
    : 괄호 안의 숫자로 크기 변경 가능 ex) (1.0);기본 크기→ (1.3)


/run for i=1, DEBUFF_MAX_DISPLAY do _G["DebuffButton"..i]:SetScale(1.3); end
/run for i=1, BUFF_MAX_DISPLAY do _G["BuffButton"..i]:SetScale(1.3); end


3. 단축키 숨기기
    : 스킬창 내의 스킬 단축키 숨기는 기능

/run for i=1, 12 do _G["ActionButton"..i.."HotKey"]:SetAlpha(0) _G["MultiBarBottomRightButton"..i.."HotKey"]:SetAlpha(0) _G["MultiBarBottomLeftButton"..i.."HotKey"]:SetAlpha(0) end


4. 매크로 이름 숨기기
    : 스킬창 내의 매크로 이름 숨기는 기능

/run for i=1, 12 do _G["ActionButton"..i.."Name"]:SetAlpha(0) _G["MultiBarBottomRightButton"..i.."Name"]:SetAlpha(0) _G["MultiBarBottomLeftButton"..i.."Name"]:SetAlpha(0) end


5. 스킬창 texture 숨기기 

/run MainMenuBarTexture0:Hide()
/run MainMenuBarTexture1:Hide()
/run MainMenuBarTexture2:Hide()
/run MainMenuBarTexture3:Hide()


6. 스킬창 좌우 독수리 숨기기
 
/run MainMenuBarLeftEndCap:Hide()MainMenuBarRightEndCap:Hide();
/SCRIPT UIErrorsFrame:UnregisterEvent("UI_ERROR_MESSAGE")


7. Timer 사용하기
   : SW(Stop Watch) 18; 18초가 counting되고, 완료시점에 timer가 사라짐
 
/sw 18
/sw play
/run if not CF then CF=CreateFrame"FRAME"CF:SetScript("OnUpdate",function() if not Stopwatch_IsPlaying() then StopwatchFrame:Hide()CF:SetScript("OnUpdate",nil)CF=nil;end;end)end