/script if (UnitHealth("target")<20) then CastSpellByName("斩杀(等级 5)"); end
/施放 嗜血(等级 4)
/script if (UnitMana("Player")>34) then CastSpellByName("英勇打击");end
3.破胆绷带宏
[color=limegreen]color=darkblue]
/施放 破胆怒吼
/script SpellStopCasting()
/target 安达里克
/script UseContainerItem(4,1)
/script TargetLastEnemy()
上面的名字换成你自己的
4.防御姿态拉怪的宏,优先使用盾牌格档技能可以有效减少怪物的暴击
/施放 盾牌格挡
/script SpellStopCasting();
/script if (UnitMana("Player")>14) then CastSpellByName("复仇");end
/script if (UnitMana("Player")>44) then CastSpellByName("盾牌猛击");end
/script if (UnitMana("Player")>59) then CastSpellByName("英勇打击");end
另一种写法如下,有待我测试是否可用
/施放 盾牌格挡
/script local csbn,ump csbn=CastSpellByName ump=UnitMana("player") SpellStopCasting() if ump>59 then csbn("英勇打击") else if ump>44 then csbn("盾牌猛击") else if ump>14 then csbn("复仇") end end end
5.人物只在进入战斗的时候释放旋风斩,应某些朋友的要求添加的
/script if(UnitAffectingCombat("player")==1) then CastSpellByName("旋风斩");end
/script if(IsUsableAction(80)==1) then CastSpellByName("冲锋");elseif (IsActionInRange(80)==1) then CastSpellByName("拦截");elseif (IsUsableAction(79)==1) then CastSpellByName("压制");else CastSpellByName("断筋"); end
注意:冲锋技能放在战斗姿态的数字8,压制技能放在战斗姿态的数字7才能使用!
3.武器战士战斗攻击宏(狂暴姿态和战斗姿态都用这个)
/script C=CastSpellByName;if(IsUsableAction(79)==1) then C("压制");elseif (UnitHealth("target")<20) then C("斩杀");end
/施放 致死打击(等级 4)
/施放 旋风斩
/script if(UnitMana("Player")>49) then C("英勇打击");end
狂暴战士攻击宏(狂暴姿态和战斗姿态都用的)
/script C=CastSpellByName;if(IsUsableAction(79)==1) then C("压制");elseif (UnitHealth("target")<20) then C("斩杀");end
/施放 嗜血(等级 4)
/script if(UnitMana("Player")>29) then C("旋风斩");end
/script if(UnitMana("Player")>49) then C("英勇打击");end
4.一键缴械宏(连续按就OK)
/script CastShapeshiftForm(2)
/施放 缴械
5.切换双手武器和剑盾宏
/script PickupInventoryItem(17);if(CursorHasItem()) then PickupContainerItem(4,2);PickupContainerItem(4,1);PickupInventoryItem(16);else PickupContainerItem(4,1);PickupInventoryItem(16);PickupContainerItem(4,2);PickupInventoryItem(17);end
注意,单手武器和盾要放在最左边的包包里的最上面两个格子,第一个放武器,第二个放盾
6.双持姿态切换副手武器和盾的宏
/script PickupContainerItem(4,2)
/script PickupInventoryItem(17)
副手武器或者盾,是放在最左边的包包的第二个格子
7.拉仇恨宏,盾牌格档+复仇+英勇打击
/script if(IsUsableAction(90)==1) then CastSpellByName("盾牌格挡");end
/script SpellStopCasting()
/script if(IsUsableAction(91)==1) then CastSpellByName("复仇");end