求教一个超级宏写法问题。

Viewed 73

写了一个鸟德的输出宏,如果自身月蚀buff剩余时间大于等于10秒,使用加速手套,然后使用月火术。如果月蚀buff剩余时间小于10秒,使用月火术。如果没有月蚀buff,使用月火术。

/s S a=ART(48518) if a>=10 then M('/use10 /cast月火术') elseif a<10 then M('/cast月火术') else M('/cast月火术')

不是太懂lua写法,使用的时候一直提示语法错误,请教一下肥羊写法。

2 Answers
a=ART(48518)  
if a>=10000 then  -- 这里是毫秒  10 * 1000
    M('/use10') 
    M('/cast月火术')
elseif a>0 then     -- 如果 如果月蚀buff剩余时间小于10秒
    M('/cast月火术') 
else                -- 如果没有 月蚀buff , 如果没有特殊处理
    M('/cast月火术')
end

结果

/s S a=ART(48518) if a>=1000 then M('/use10') M('/cast月火术') elseif a>0 then M('/cast月火术') else M('/cast月火术') end

另外可以简化为

a=ART(48518)  
if a>=10000 then  -- 这里是毫秒  10 * 1000
    M('/use10') 
    M('/cast月火术')
end
M('/cast月火术')

感谢

按照改后的试了下,还是不能使用,好像提示缺少文件?

@admin