给你几个猎人用起来比较爽的宏:
1.
/施放 猛禽一击()
/施放 反击()
/施放 猫鼬撕咬()
/script local T; for i=0,15,1 do T=UnitDebuff("target", i); if (T and string.find (T,"Trip")) then ...break; end; end; if (T and string.find (T,"Trip")) then CastSpellByName("摔绊(等级 1)"); else CastSpellByName("摔绊(等级 3)"); end
2.钉刺的智能判断宏。
/script if (UnitMana("target")>120) then CastSpellByName("蝰蛇钉刺()") else CastSpellByName("毒蝎钉刺()"); end
3.灵猴威慑宏
/script for i=1,16,1 do if (UnitBuff("player",i)~=nil) then if (string.find(UnitBuff("player",i),"Mon")~=nil) then CastSpellByName("威慑");break;end end if(i==16) then CastSpellByName("灵猴守护");end end
4.假死陷阱宏。如果喜欢放冰冻陷阱的话,直接改成冰冻陷阱就行了,
/script ClearTarget()
/script CastPetAction(10) if(UnitAffectingCombat("player")==1) then CastSpellByName("假死") else CastSpellByName("冰霜陷阱") end
/script TargetLastEnemy()
以上的几个宏都是我用了一年的,直接复制过去就OK~~~