当前位置:首页 > 游戏信息 > 正文

求魔兽世界法师翻页流的技能摆设和按键设置及要用的宏

求魔兽世界法师翻页流的技能摆设和按键设置及要用的宏-第1张-游戏信息-龙启网

#showtooltip

/cast [modifier:alt]炎爆术;火球术

火法专用 快速瞬发脸盆.

#showtooltip

/cast [modifier:alt]火球术;灼烧

冰法专用 快速瞬发火球

#showtooltip

/Cast [modifier:alt]奥术冲击;奥术飞弹

快被遗忘的奥冲...

#showtooltip

/cast [modifier:alt]烈焰风暴;龙息术

瞬发火炉

#showtooltip

/cast [modifier:alt]烈焰风暴;冲击波

瞬发火炉

#showtooltip

/stopcasting

/cast [modifier:alt]法术偷取;闪现术

#showtooltip

/cast [modifier:alt]烈焰风暴;冰锥术

#showtooltip

/cast [modifier:shift]解除诅咒;[modifier:alt]魔爆术;冰霜新星

#showtooltip

/stopcasting

/Cast [modifier:alt]奥术冲击;奥术飞弹

#showtooltip

/cast [modifier:alt]寒冰护体;[button:2]野魔花;法力护盾

冰法就将寒冰护体和法力护盾换下位置

施法打断提示宏,某高人写的 时间太久不记得了

下面3个宏是绑在一起的 进入游戏后按顺序各点一次。

之后你每打断掉别人的施法就会小队喊话

/p [hh:mm:ss] 我打断了[某某]的[牛X技能]

并且技能还是个连接 可以看到一些怪物的奇特法术。

◆打断提示宏1

/run function SIS_M(a,b,c,d,e,f,g,type) SendChatMessage(" 我打断了 ["..c.."] 的 \124cff71d5ff\124Hspell:"..f.."\124h["..g.."]\124h\124r。",type);end

◆打断提示宏2

/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,"partty");end end

----"partty"代表小队 可以改为"say" "yell" "raid"等。

◆打断提示宏3"

/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);