WOW国服ND治疗宏
求一个先释放回春术然后释放迅捷治愈的宏,一宏或者一拖几的宏都可以还有就是自然迅捷+治疗之触的宏,要没有那个错误提示的做好后在追30分谢谢了...
求一个先释放回春术然后释放迅捷治愈的宏,一宏或者一拖几的宏都可以
还有就是自然迅捷+治疗之触的宏,要没有那个错误提示的
做好后在追30分
谢谢了 展开
还有就是自然迅捷+治疗之触的宏,要没有那个错误提示的
做好后在追30分
谢谢了 展开
4个回答
展开全部
1、树皮+宁静:
判断是否有树皮,没有则放树皮,有则放宁静。简而言之,点一下是树皮,2下是树皮+宁静。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff("player",x),"StoneClaw"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("宁静(等级 3)");else CastSpellByName("树皮术")end
2、激活:
先判断,如果目标敌对/是NPC/没有目标/是没蓝职业 都给自己使用激活;如果目标是有蓝职业则
给对放激活。使用完激活自动返回上一目标。
/script x=UnitClass("target");if (not UnitIsFriend("player","target") or (UnitManaMax
("target")<200 and x~="Druid")) then TargetUnit("player");end;CastSpellByName("激
活");TargetLastTarget();
3、自然迅捷+治疗之触:
只需要按一下,但是偶尔也需要2下(比如延迟高)。
/script SpellStopCasting()
/施放 自然迅捷
/script SpellStopCasting()
/施放 治疗之触(等级 11)
4、回春术+迅捷治愈:
有回春效果则放迅捷治愈,没有则放回春.
/Script x=1;found=0;while(UnitBuff("target",x)) do if(string.find(UnitBuff("target",x),"Rejuvenation"))then found=1;end;x=x+1;end;
/Script if(found==1)then CastSpellByName("迅捷治愈");else CastSpellByName("回春术(等级 11))")end
5、治疗之触:
(1)根据目标血量判断是使用最大等级的治疗之触,还是刷4级触(去血少于1200)。
/cast 治疗之触
/script if UnitIsFriend("Player","target") then if UnitAffectingCombat("target") then if
((UnitHealthMax("target"))-(UnitHealth("target"))<1200) then CastSpellByName("治疗之触(等级 4)");end;end;elseif SpellIsTargeting() then TargetUnit("Player");end
(2)根据目标血量判断使用哪个等级的治疗之触。
/script H=UnitHealthMax("target")-UnitHealth("target");S= {41,98,213,394,617,799,1004,1285,1621,2010,2496};
/script for j=11,1,-1 do if (H>=S[j]) then CastSpellByName("治疗之触(等级 "..j..")"); break;end;end;
6、回春术:
根据目标等级判断使用哪个等级的回春术。
/script r=10;l={4,10,16,22,28,34,40,46,52,58};t=UnitLevel("target");for j=r,1,-1 do if (t>=l[j]-10) then CastSpellByName("回春术(等级 "..j..")");break;end;end
7、愈合:
根据目标等级判断使用哪个等级的愈合。
/script r=7;l={12,18,24,30,36,42,48,54,60};t=UnitLevel("target");for j=r,1,-1 do if (t>=l[j]-10) then CastSpellByName("愈合(等级 "..j..")");break;end;end
8、驱毒:
在任何形态下变回人形,并给目标上驱毒。
/script local i,a,_;for i=1,GetNumShapeshiftForms() do _,_,a=GetShapeshiftFormInfo(i);if a then CastShapeshiftForm(i);break;end;end;
/cast 驱毒术
判断是否有树皮,没有则放树皮,有则放宁静。简而言之,点一下是树皮,2下是树皮+宁静。
/script x=1;found=0;while(UnitBuff("player",x)) do if(string.find(UnitBuff("player",x),"StoneClaw"))then found=1;end;x=x+1;end;
/script if(found==1)then CastSpellByName("宁静(等级 3)");else CastSpellByName("树皮术")end
2、激活:
先判断,如果目标敌对/是NPC/没有目标/是没蓝职业 都给自己使用激活;如果目标是有蓝职业则
给对放激活。使用完激活自动返回上一目标。
/script x=UnitClass("target");if (not UnitIsFriend("player","target") or (UnitManaMax
("target")<200 and x~="Druid")) then TargetUnit("player");end;CastSpellByName("激
活");TargetLastTarget();
3、自然迅捷+治疗之触:
只需要按一下,但是偶尔也需要2下(比如延迟高)。
/script SpellStopCasting()
/施放 自然迅捷
/script SpellStopCasting()
/施放 治疗之触(等级 11)
4、回春术+迅捷治愈:
有回春效果则放迅捷治愈,没有则放回春.
/Script x=1;found=0;while(UnitBuff("target",x)) do if(string.find(UnitBuff("target",x),"Rejuvenation"))then found=1;end;x=x+1;end;
/Script if(found==1)then CastSpellByName("迅捷治愈");else CastSpellByName("回春术(等级 11))")end
5、治疗之触:
(1)根据目标血量判断是使用最大等级的治疗之触,还是刷4级触(去血少于1200)。
/cast 治疗之触
/script if UnitIsFriend("Player","target") then if UnitAffectingCombat("target") then if
((UnitHealthMax("target"))-(UnitHealth("target"))<1200) then CastSpellByName("治疗之触(等级 4)");end;end;elseif SpellIsTargeting() then TargetUnit("Player");end
(2)根据目标血量判断使用哪个等级的治疗之触。
/script H=UnitHealthMax("target")-UnitHealth("target");S= {41,98,213,394,617,799,1004,1285,1621,2010,2496};
/script for j=11,1,-1 do if (H>=S[j]) then CastSpellByName("治疗之触(等级 "..j..")"); break;end;end;
6、回春术:
根据目标等级判断使用哪个等级的回春术。
/script r=10;l={4,10,16,22,28,34,40,46,52,58};t=UnitLevel("target");for j=r,1,-1 do if (t>=l[j]-10) then CastSpellByName("回春术(等级 "..j..")");break;end;end
7、愈合:
根据目标等级判断使用哪个等级的愈合。
/script r=7;l={12,18,24,30,36,42,48,54,60};t=UnitLevel("target");for j=r,1,-1 do if (t>=l[j]-10) then CastSpellByName("愈合(等级 "..j..")");break;end;end
8、驱毒:
在任何形态下变回人形,并给目标上驱毒。
/script local i,a,_;for i=1,GetNumShapeshiftForms() do _,_,a=GetShapeshiftFormInfo(i);if a then CastShapeshiftForm(i);break;end;end;
/cast 驱毒术
展开全部
/cast 自然迅捷
/cast 治疗之触
这个是大迅捷+触,这个宏是可以的,因为大迅捷不触发GCD
/cast 回春术
/stopcasting
/cast 迅捷治愈
这个宏没有用,因为回春术触发GCD,会导致小迅捷出不来.这个宏要能用的话就没有预HOT的说法了.还是各按各的吧.
/cast 治疗之触
这个是大迅捷+触,这个宏是可以的,因为大迅捷不触发GCD
/cast 回春术
/stopcasting
/cast 迅捷治愈
这个宏没有用,因为回春术触发GCD,会导致小迅捷出不来.这个宏要能用的话就没有预HOT的说法了.还是各按各的吧.
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#showtooltips 迅捷治愈
/use 14
/cast 回春术
/stopcasting
/cast 迅捷治愈
#showtooltips 自然迅捷
/use 14
/cast 自然迅捷
/stopcasting
/cast 治疗之触
/use 14
/cast 回春术
/stopcasting
/cast 迅捷治愈
#showtooltips 自然迅捷
/use 14
/cast 自然迅捷
/stopcasting
/cast 治疗之触
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
大小救命宏。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询