请求一个魔兽世界盗贼在副本里的高端输出宏
盗贼FB输出没有像猎人术士等比较有规律的输出技能
盗贼输出基本都是靠连接点随机应变的
时间长了你自己会琢磨出一套自己的输出方式
我给你几个一般的宏吧
太好的我也不会
盗贼全程切割宏
战斗贼版
/script c=CastSpellByName;p="player";u=0;i=1;while UnitBuff(p,i) do u=string.find(UnitBuff(p,i),"SliceDice");if(u)then break;end;i=i+1;end;if(not u and GetComboPoints()>0)then c("切割");else CastSpellByName("邪恶攻击");end
匕首贼版
/script c=CastSpellByName;p="player";u=0;i=1;while UnitBuff(p,i) do u=string.find(UnitBuff(p,i),"SliceDice");if(u)then break;end;i=i+1;end;if(not u and GetComboPoints()>0)then c("切割");else CastSpellByName("背刺");end
出血贼版
/script c=CastSpellByName;p="player";u=0;i=1;while UnitBuff(p,i) do u=string.find(UnitBuff(p,i),"SliceDice");if(u)then break;end;i=i+1;end;if(not u and GetComboPoints()>0)then c("切割");else CastSpellByName("出血");end
说明:如果没有星的的话就直接邪恶攻击(背刺,出血),在有星没有切割BUFF的时候施放切割再加邪恶!在有星有切割BUFF的状态下施放邪恶(背刺,出血)。
战斗贼的,平时邪恶,OT时开闪避
/script if (UnitIsUnit("targettarget","player")) then CastSpellByName("闪避") end;CastSpellByName("邪恶攻击(等级 8)")
匕首贼的,平时背刺,ot时候开闪避
/script if (UnitIsUnit("targettarget","player")) then CastSpellByName("闪避") end;CastSpellByName("背刺(等级 8)")
如果你的背刺是等级9
/script if (UnitIsUnit("targettarget","player")) then CastSpellByName("闪避") end;CastSpellByName("背刺(等级 9)")
出血贼的 平时出血,ot时候开闪避
/script if (UnitIsUnit("targettarget","player")) then CastSpellByName("闪避") end;CastSpellByName("出血(等级 6)")