作者jyuny1 (凱文藍)
看板WOW
標題[閒聊] DK Tank macro
時間Fri Mar 13 14:05:39 2009
我原本想自己寫一個 addon 來喊 DK 大招施放
不用 castyeller 的原因是他沒有倒數功能
個人認為坦克非常需要倒數這個功能 XD
後來發現一個好用的 macro addon - Super Duper Macro
可以讓 macro 突破 255 字,從此之後我就欲罷不能的狂寫 macro
由於剛洗成血坦,所以以下 macro 皆是血系坦克技能~
其他職業改一改應該可以用
要用我的 macro 請安裝 Super Duper Macro,並用他的編輯視窗編輯 macro
http://www.wowinterface.com/downloads/info10496-SuperDuperMacro.html
符文轉化
/console Sound_EnableSFX 0
#showtooltip 符文轉化
/cast 符文轉化
/cast 符文打擊
/run maxhp=UnitHealthMax("player") party=GetNumPartyMembers()
raid=GetNumRaidMembers()
local channel
if (raid>0) then
channel="raid"
elseif (party>0) then
channel="party"
else
return
end
SendChatMessage(format("使用符文轉化治療 %d HP",maxhp*
0.22),channel)
> ^^^^^
> 帶入你的天賦加成
/run UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
君王螃蟹
/console Sound_EnableSFX 0
#showtooltip 刻像 - 君王螃蟹
/cast 刻像 - 君王螃蟹
/cast 符文打擊
/run party=GetNumPartyMembers() raid=GetNumRaidMembers()
local channel
if (raid>0) then
channel="/ra"
elseif (party>0) then
channel="/p"
else
return
end
SlashCmdList["IN"](format("0 %s 使用君王螃蟹提昇5%%閃躲持續10秒",channel))
SlashCmdList["IN"](format("1 %s 目前閃+招:%.2f%%",channel,
GetDodgeChance("player")+GetParryChance("player")))
SlashCmdList["IN"](format("5 %s 君王螃蟹效果還有5秒",channel))
/run UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
血族之裔
/console Sound_EnableSFX 0
#showtooltip 血族之裔
/cast 血族之裔
/cast 符文打擊
/run maxhp=UnitHealthMax("player") party=GetNumPartyMembers()
raid=GetNumRaidMembers() local channel
if (raid>0) then
channel="/ra"
elseif (party>0) then
channel="/p"
else
return
end
SlashCmdList["IN"](format("1 %s 使用血族之裔增加15%%最大HP(+%d)持續30秒
,目前最大血量 %d",channel,maxhp*0.15,maxhp*1.15))
SlashCmdList["IN"](format("15 %s 血族之裔效果還有15秒",channel))
SlashCmdList["IN"](format("25 %s 血族之裔效果還有5秒",channel))
/run UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
/console Sound_EnableSFX 0
#showtooltip 血魄印記
/cast 血魄印記
/cast 符文打擊
/run maxhp=UnitHealthMax("player")*0.04 party=GetNumPartyMembers()
raid=GetNumRaidMembers() local channel
if (raid>0) then
channel="raid"
elseif (party>0) then
channel="party"
else
return
end
SendChatMessage("對%t使用血魄印記持續治療攻擊目標 "..maxhp.. " HP,
持續20秒或被命中20次",channel)
/run UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
--
有人跟我說:「Wow, Randy 你真的打敗了死神!」
我毫不思索的脫口而出:「只靠著多活幾天是無法打敗死神的。」
擊敗死神的方法是活的更好,活的更有意義!
因為人生終需一死。
關鍵是,在出生時和死神降臨之間,我們做了什麼.....
- Randy Pausch 2008/5 CMU 畢業典禮致詞
http://0rz.tw/9f4te
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 203.73.222.249
推 aspdoctor:你的巨集也太屌了 好長啊.... 03/13 14:07
→ jyuny1:只能說會用就會用,不會用就... 03/13 14:08