魔兽世界求一个技能连发宏
2024-07-18 22:25:04作者:饭克斯
反制:
/scriptSpellStopCasting();CastSpellByName(Counterspell)
用这个反制技能就能立刻发出了。
冰箱:
/scriptSpellStopCasting()CastSpellByName(IceBlock);localifori=0,15doif(GetPlayerBuffTexture(i)==Interface\\Icons\\Spell_Frost_Frost)thenCancelPlayerBuff(i);end;end
冰箱虽然是瞬发,但是有公共CD,所以要等前一个法术进度条过1.5秒后才起作用。小于1.5秒按只会取消前一个法术,冰箱不能发出,需要再按一下才有效果。再按一下是取消冰箱。
关于灵风专注效果的两个宏..
宏1:/scripti=1;m=0;while(UnitBuff(player,i)~=nil)doif(strfind(UnitBuff(player,i),Spell_Shadow_Teleport)~=nil)thenm=1;end;i=i+1;end;c=CastSpellByName;if(m==1)thenc(炎爆术(等级8));elsec(寒冰箭(等级11));end;
宏2:/scriptc=寒冰箭(等级11);fori=1,16,1doif(UnitBuff(player,i)~=nil)thenif(string.find(UnitBuff(player,i),Spell_Shadow_Teleport)~=nil)thenc=炎爆术(等级8);break;end;end;end;CastSpellByName(c)
展开全文