低调的AutoMacro研究院(论坛已经搬至bbs.luacn.net)
Would you like to react to this message? Create an account in a few clicks or log in to continue.
低调的AutoMacro研究院(论坛已经搬至bbs.luacn.net)

Automacro! 论坛已经搬至bbs.luacn.net


您没有登录。 请登录注册

火法输出脚本(有些小问题,但可以将就用)

3 posters

向下  留言 [第1页/共1页]

silence814



if BeeUnitAffectingCombat() and BeePlayerBuffTime("炎爆术!")>0 and BeeIsRun("炎爆术") then

BeeRun("炎爆术");

return;

end

if BeeUnitAffectingCombat() and BeeTargetDeBuffTime("活动炸弹")<1 then

BeeRun("/cast 活动炸弹");

return;

end

if BeeTargetDeBuffTime("燃烧")>1 and BeeIsRun("炼狱冲击") then

BeeRun("炼狱冲击");

return;

end

if BeeTargetDeBuffTime("热力迸发")>1 and BeeIsRun("炼狱冲击") then

BeeRun("炼狱冲击");

return;

end

if BeeIsRun("霜火之箭") then

BeeRun("霜火之箭");

return;

end

if BeeUnitAffectingCombat() and (GetUnitSpeed("player")>0 and BeePlayerBuffTime("熔火之羽")<0) then
if BeeIsRun("灼烧","target") then BeeRun("灼烧","target");return;end

现在的问题是,炼狱冲击没效果,需要手动, 灼烧不能施放,原来的脚本的改的。求补全。。

2火法输出脚本(有些小问题,但可以将就用) Empty 有木有yjwow脚本~~~ 周四 十月 25, 2012 9:36 am

helaobibi



有木有yjwow脚本~~~ Crying or Very sad Crying or Very sad Crying or Very sad Crying or Very sad Crying or Very sad

Admin


Admin

最新的E04 加入了一个函数 SpellIsRun
原版没有的

1
当BeeIsRun不能判断时 用
SpellIsRun(spellName,target)
例:
SpellIsRun("炼狱冲击","target")
它应该可以避免BeeIsRun的问题

2.
当BeeRun没用的时候
用BeeRun("/cast 炼狱冲击")


试试看 应该可以解决

http://automacro.forum-lunjian.com

Admin


Admin


BeeIsRun后面 如果是炼狱冲击这类替换掉原技能的, 要写原技能名,原因不明





代码:

if BeeUnitAffectingCombat() and BeePlayerBuffTime("炎爆术!")>0 and BeeIsRun("炎爆术") then
   
    BeeRun("炎爆术");
   
    return;
   
end

if BeeUnitAffectingCombat() and BeeTargetDeBuffTime("活动炸弹")<1 then
   
    BeeRun("/cast 活动炸弹");
   
    return;
   
end

if BeeTargetDeBuffTime("燃烧")>1 and BeeIsRun("火焰冲击") then
   
    BeeRun("火焰冲击");
   
    return;
   
end

if UnitAura("player","热力迸发")~=nil  and BeeIsRun("火焰冲击") then
   
    BeeRun("/cast 炼狱冲击");
   
    return;
   
end

if SpellIsRun("灼烧") then
   
    BeeRun("灼烧");
   
    return;
   
end

http://automacro.forum-lunjian.com

返回页首  留言 [第1页/共1页]

您在这个论坛的权限:
不能在这个论坛回复主题