▶ 영상에 나오는 샘플 공용 위크오라 reims.tistory.com/364
▼ 스킬 위크오라(동작 - 사용자 설정)
local button = CreateFrame("Button",
"WA_PoisonReminder",
aura_env.region,
"SecureActionButtonTemplate")
button:SetAllPoints()
--button:SetAttribute("unit","player")
button:RegisterForClicks("LeftButtonDown")
button:SetAttribute("type1", "spell")
button:SetAttribute("spell1", 324739) -- 뒤에 번호에 스킬ID 입력하세요
▼ 아이템 위크오라 (동작 - 사용자 설정)
if not aura_env.clickableFrame then
local r = aura_env.region
aura_env.clickableFrame = CreateFrame("Button", "ConsumeButton", r, "SecureActionButtonTemplate")
end
aura_env.clickableFrame:SetAllPoints()
aura_env.clickableFrame:SetAttribute("type", "macro")
aura_env.clickableFrame:SetAttribute("macrotext", [[
/use item:177278]]) --아이템ID를 입력하세요
▼ 아이템 위크오라 (디스플레이 - 공통 문자)
function()
local pot = GetItemCount(177278, nil, true)
if pot == 0 then
return string.format("0")
else
return string.format(pot)
end
end
'World of Warcraft > [WoW] 위크오라' 카테고리의 다른 글
와우 Reim 공용/공통 위크오라 좌우 버전 (3/11) (10) | 2021.03.11 |
---|---|
와우 (Reim) 흑마법사 좌우 위크오라 2021.04.07 (11) | 2021.03.10 |
와우 정신자극 위크오라 (0) | 2021.03.06 |
와우 어둠땅 성기사 위크오라 by Reim (03/02) (2) | 2021.03.02 |
와우 쐐기 저편 무에젤라 자리 지정 위크오라 (0) | 2021.02.28 |