发一个简易版一键输出猫咪普通宏,不是超级宏。
低能量自动重整、自动猛虎、保持流血、保持精灵火、不找背、无脑爪击。
主打插件依赖少、门槛低、易使用。练级阶段或者满级都能用。不需要安装超级宏,仅需要!lib和classicmacro插件即可。
核心天赋要求:5点激怒(恢复天赋低1层,5/5,在你有[20/40/60/80/100]%的几率在进入熊形态和巨熊形态时获得10点怒气值,或者在进入猎豹形态时获得40点能量值。)
宏1:带流血,带撕扯(终结技),适合2个5星终结技以上打完(打精英)。
/startattack
/script B=IsBuffActive;C=CastSpellByName;A=GetPlayerAuraIndex;L=GetPlayerBuffTimeLeft;D=GetActionCooldown;
/script p=GetComboPoints();e=UnitMana("player");if B("猛虎之怒")then m=L(A("猛虎之怒"))else m=0 end;
/script if e<20 then C("重整")end;if m<1 then C("猛虎之怒")end;if p>4 and not TarDebuff("撕扯")then C("撕扯")elseif p>4 then C("凶猛撕咬")end;
/script if B("潜行") then C("突袭") elseif not TarDebuff("精灵之火(野性)")and D(9)==0 then C("精灵之火(野性)")elseif p<5 and not TarDebuff("扫击")then C("扫击")elseif p<5 then C("爪击")end;
宏2:带流血,不带撕扯(终结技),适合2个5星终结技之内打完(打简单)
/startattack
/script B=IsBuffActive;C=CastSpellByName;A=GetPlayerAuraIndex;L=GetPlayerBuffTimeLeft;D=GetActionCooldown;
/script p=GetComboPoints();e=UnitMana("player");if B("猛虎之怒")then m=L(A("猛虎之怒"))else m=0 end;
/script if e<20 then C("重整")end;if m<1 then C("猛虎之怒")end;if p>4 then C("凶猛撕咬")end;
/script if B("潜行") then C("突袭") elseif not TarDebuff("精灵之火(野性)")and D(9)==0 then C("精灵之火(野性)")elseif p<5 and not TarDebuff("扫击")then C("扫击")elseif p<5 then C("爪击")end;
宏3:不带流血,免疫流血目标
/startattack
/script B=IsBuffActive;C=CastSpellByName;A=GetPlayerAuraIndex;L=GetPlayerBuffTimeLeft;D=GetActionCooldown;
/script p=GetComboPoints();e=UnitMana("player");if B("猛虎之怒")then m=L(A("猛虎之怒"))else m=0 end;
/script if e<20 then C("重整")end;if m<1 then C("猛虎之怒")end;if p>4 then C("凶猛撕咬")end;
/script if B("潜行") then C("突袭") elseif not TarDebuff("精灵之火(野性)")and D(9)==0 then C("精灵之火(野性)")elseif p<5 then C("爪击")end;
附上lib和classic插件,解压后放在 游戏根目录/Interface/AddOns 目录下即可。下载来源为kook,可自行去下载最新的。
附上lib和classic插件,解压后放在 游戏根目录/Interface/AddOns 目录下即可。下载来源为kook,可自行去下载最新的。
老哥有没有打一星撕扯的版本
可以修改的。
只要打1星撕扯的话,把 【if p>4 and not TarDebuff(“撕扯”)then C(“撕扯”)】 这段 替换成 【if p<2 and not TarDebuff(“撕扯”)then C(“撕扯”)】即可。
如果是要打撕扯,不论星数,则 【if p>4 and not TarDebuff(“撕扯”)then C(“撕扯”)】 这段 替换成 【if not TarDebuff(“撕扯”)then C(“撕扯”)】即可。
根据需要修改一下就行