中间特殊技能的宏有谁还有保留么
答案:1 悬赏:30 手机版
解决时间 2021-01-28 23:44
- 提问者网友:遮云壑
- 2021-01-27 22:52
中间特殊技能的宏有谁还有保留么
最佳答案
- 五星知识达人网友:梦中风几里
- 2021-01-28 00:08
猫形态
1、猫形态常用攻击宏:
通常情况下使用爪击,当连击点数大等于3点时(即“3星”),使用凶猛撕咬。
/script if ( GetComboPoints() >= 3 ) then CastSpellByName("凶猛撕咬"); else CastSpellByName
("爪击") end
2、猫形态起手宏(潜行):
在潜行的条件下,毁灭起手,然后检测对方身上是否有精灵之火,没有就上个,有就爪击。
/cast 毁灭
/cast 爪击
/script x=1;found=0;while(UnitDebuff("target",x)) do if(string.find(UnitDebuff
("target",x),"Spell_Nature_FaerieFire"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("爪击");else CastSpellByName("精灵之火(野性)")end
3、背面攻击宏:
先判断,如果毁灭能用就用毁灭,不能用就撕碎。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff
("player",x),"Ambush"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("毁灭");else CastSpellByName("撕碎")end
4、潜行+突袭:
先判断,如果在潜行状态下就突袭,否则潜行。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff("player",x),"Ambush"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("突袭");else CastSpellByName("潜行")end
5、爪击+撕碎:
当能量大等于60时使用撕碎,小于60时使用爪击。通常在BOSS战DPS时使用。
/Script if (UnitMana("Player")>=60) then CastSpellByName("撕碎");else CastSpellByName("爪击")end
6、攻击+爪击:
( 发挥 补充)能量如果小于37则普通攻击,大于37则爪击。
/script if (UnitMana("player")<37) then CastSpellByName("攻击");else CastSpellByName("爪击")end
7、突袭+扫击:
( 发挥 补充)如果潜行则使用突袭,否则使用扫击。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff("player",x),"Ambush"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("突袭");else CastSpellByName("扫击")end
8、猫形态+凶猛神像:
人形态下,按1下是变猫,2下是换上凶猛神像;猫形态下是换上凶猛神像。(漠铭骑喵制作)[红字部分是UseContainerItem(背包编号,格子编号)。请把[凶猛神像]放在最原始的16格包的第一行从左往右第2格的位置上。
PS:背包编号:从左到右:4,3,2,1,0。 就是说,你一开始就有的16格行囊是0号背包。
背包格子编号:第一行从左到右:1,2,3,4 (注意从1开始的) ;第二行从左到右:5,6,7,8 依此类推……
/script local c,s,i,f,n,a,_=CastSpellByName,"猎豹形态";for i=1,GetNumShapeshiftForms() do _,n,a,s=GetShapeshiftFormInfo(i);if n==s then break;end;end;if a==1 then UseContainerItem(0,2);else c(s);end;
1、猫形态常用攻击宏:
通常情况下使用爪击,当连击点数大等于3点时(即“3星”),使用凶猛撕咬。
/script if ( GetComboPoints() >= 3 ) then CastSpellByName("凶猛撕咬"); else CastSpellByName
("爪击") end
2、猫形态起手宏(潜行):
在潜行的条件下,毁灭起手,然后检测对方身上是否有精灵之火,没有就上个,有就爪击。
/cast 毁灭
/cast 爪击
/script x=1;found=0;while(UnitDebuff("target",x)) do if(string.find(UnitDebuff
("target",x),"Spell_Nature_FaerieFire"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("爪击");else CastSpellByName("精灵之火(野性)")end
3、背面攻击宏:
先判断,如果毁灭能用就用毁灭,不能用就撕碎。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff
("player",x),"Ambush"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("毁灭");else CastSpellByName("撕碎")end
4、潜行+突袭:
先判断,如果在潜行状态下就突袭,否则潜行。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff("player",x),"Ambush"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("突袭");else CastSpellByName("潜行")end
5、爪击+撕碎:
当能量大等于60时使用撕碎,小于60时使用爪击。通常在BOSS战DPS时使用。
/Script if (UnitMana("Player")>=60) then CastSpellByName("撕碎");else CastSpellByName("爪击")end
6、攻击+爪击:
( 发挥 补充)能量如果小于37则普通攻击,大于37则爪击。
/script if (UnitMana("player")<37) then CastSpellByName("攻击");else CastSpellByName("爪击")end
7、突袭+扫击:
( 发挥 补充)如果潜行则使用突袭,否则使用扫击。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff("player",x),"Ambush"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("突袭");else CastSpellByName("扫击")end
8、猫形态+凶猛神像:
人形态下,按1下是变猫,2下是换上凶猛神像;猫形态下是换上凶猛神像。(漠铭骑喵制作)[红字部分是UseContainerItem(背包编号,格子编号)。请把[凶猛神像]放在最原始的16格包的第一行从左往右第2格的位置上。
PS:背包编号:从左到右:4,3,2,1,0。 就是说,你一开始就有的16格行囊是0号背包。
背包格子编号:第一行从左到右:1,2,3,4 (注意从1开始的) ;第二行从左到右:5,6,7,8 依此类推……
/script local c,s,i,f,n,a,_=CastSpellByName,"猎豹形态";for i=1,GetNumShapeshiftForms() do _,n,a,s=GetShapeshiftFormInfo(i);if n==s then break;end;end;if a==1 then UseContainerItem(0,2);else c(s);end;
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯