게임/World of Warcraft

리분 클래식 법사 마법차단 매크로

CrafterG 2024. 2. 18. 15:21
반응형


마법 차단시 여러번 누르게 되는경우

채팅창에 누른 횟수만큼 채팅이 올라오는 경우 아래의 매크로를 쓰면 여러번 눌러도 1회의 채팅만 올라오게 되는 매크로이다.

#showtooltip
/run if (not k) or k+1<GetTime() then b=UnitCastingInfo("target")s="마법 차단"t="target"if IsSpellInRange(s,t)==1 and  GetSpellCooldown(s)==0 then SendChatMessage("%T: < "..b.." >을 "..GetSpellLink(s),"say");k=GetTime()end;end;
/시전 마법 차단


번외로 죽기 차단 성공 실패 매크로는 다음과 같다.

#showtooltip  정신 얼리기
/run c="정신 얼리기"t="target"b=UnitCastingInfo(t)d=UnitChannelInfo(t);b=b or d;a=UnitName(t)if a and GetSpellCooldown(c)==0 then s=""if b then s="차단 성공"else s="차단 실패" end;SendChatMessage(s)end;
/시전 정신 얼리기


도적의 주시대상 차단 매크로도 있다. 만약 주시대상이 탱커일 경우 공격대상이 차단이 된다.

#showtooltip 발차기
/시전 [@focus,harm,nodead][]발차기

#showtooltip 발차기
/시전 [@focus,harm][harm] 발차기

반응형