1、首先我们准备好指令,在游戏中按下Esc键。2.在主菜单中,可以看到有“宏命令设置”。3.进入之后,点击下方的新建按钮,新建宏命令。4.右边会弹出许多图标,选择一个,起一个名字。5.命好名之后,在上方输入准备好的宏命令,注意不要输错了。6.点击保存,就可以保存使用了。
2、宏命令:标记+照明弹:/Scriptif(UnitIsEnemy("player","target&鳎溻趄酃quot;))thenCastSpellByName("猎人印记")elseCastSpellByName("照明弹");end;.标记宠物攻击:/cast猎人标记 /petattack守护切换:/castsequence雄鹰守护,猎豹守护假死放陷阱:#showtooltip冰冻陷阱 /cast假死 /petpassive /cast冰冻陷阱冲锋,压制,拦截,断筋:/script C=CastSpellByName;/script U=IsUsableAction;/script R=IsActionInRange;/script if(U(61)==1)then C("冲锋");elseif(R(61)==1)then C("拦截");elseif(U(63)==nil)then C("断筋");elseif(GetActionCooldown(63)==0)then C("压制");else C("断筋");end致死,旋风,压制,英勇打击:/script C=CastSpellByName;/script if(GetActionCooldown(63)==0) then C("压制");end/script if(UnitHealth("target")<20) then C("斩杀");end/施放 致死打击/script if(IsActionInRange(63)==1)then C("旋风斩");end/script if(UnitMana("Player")>39) then C("英勇打击");end双手武器和盾切换:/script C=CastSpellByName;/script if(GetActionCooldown(63)==0) then C("压制");end/script if(UnitHealth("target")<20) then C("斩杀");end/施放 致死打击/script if(IsActionInRange(63)==1)then C("旋风斩");end/script if(UnitMana("Player")>39) then C("英勇打击");end
3、希望可以引用,谢谢