我的宏和我的界面
标签:
宏wow游戏 |
我最近修改了我的插件,几乎删除了所有WOW的内置插件,现在我的界面里只剩下Focusframe和proximo2个竞技场插件,其他的全部用自己观察和心算.强迫自己在战歌里用脑子记对手大约的技能CD,我这么做已经1个星期了,效果还不错,现在能够相对正确地尝试控制2个目标,在面对3个敌人的时候有时候能做到一点点的临危不乱.而且很不错的一点就是,界面简洁了,玩游戏也开心.我们玩的是游戏,不是插件.
另外就是备份一下我的宏,一共大约只有10个,反制的喊话宏可以不用,不过很多人说很好玩,所以保留了下来,有时候反制一些野外怪的时候可以发现他们的一些独特技能.
54公共冷却开关冰箱
#showtooltip
寒冰屏障
/stopcasting
/cancelAura 寒冰屏障
/cast 寒冰屏障
反制和反制焦点
#showtooltip 法术反制
/STOPCASTING
/clearfocus [target=focus,dead]
/cast [modifier:shift,target=focus,exists] 法术反制;法术反制
立刻闪现
#showtooltip 闪现术
/stopcasting
/cast 闪现术
无目标自动施放1级奥暴
/施放 [noharm] 魔爆术(等级
1);魔爆术
自动摧毁刚玉做新刚玉
#showtooltip 制造魔法玉石
/script local g,i,j=GetContainerItemLink for i=0,4 do for j=1,20 do
if g(i,j) then if strfind(g(i,j),":22044:") then
PickupContainerItem(i,j) DeleteCursorItem() end end end end
/cast 制造魔法玉石
水元素+NOVA
#showtooltip [nopet] [target=pet,dead] 召唤水元素; [pet] 冰冻术
/cast [nopet]召唤水元素
/cast [target=pet,dead]召唤水元素
/stopmacro [target=pet,dead]
/cast 冰冻术
/petpassive
/petattack [harm]
/petfollow [noharm]
羊和羊焦点
#showtooltip 变形术(等级 1)
/focus [target=focus,noexists,dead]
/clearfocus [target=focus,dead]
/cast [modifier:shift,target=focus,exists] 变形术(等级 1);变形术(等级
1)
自动选择适合的坐骑
/USE 复仇角斗士的虚空幼龙
/USE 死亡军马的缰绳
反制自动喊话
/run function SIS_M(a,b,c,d,e,f,g,type)
SendChatMessage("["..date("%H:%M:%S",a).."] ["..b.."] 的
\124cff71d5ff\124Hspell:"..d.."\124h["..e.."]\124h\124r 打断了
["..c.."] 的
\124cff71d5ff\124Hspell:"..f.."\124h["..g.."]\124h\124r。",type);end
/run function EV_M(...) local a,v,_,b,_,_,c,_,d,e,_,f,g=...;if
(v=="SPELL_INTERRUPT" and SIS_M) then
SIS_M(a,b,c,d,e,f,g,"YELL");end end
/run if (not MSG_F) then CreateFrame("Frame","MSG_F",UIParent);end
MSG_F:RegisterEvent("COMBAT_LOG_EVENT");MSG_F:SetScript("OnEvent",function(_,_,...)
if (EV_M) then EV_M(...);end end);

加载中…