我对lua脚本很陌生..现在我正在尝试在游戏老板中编码
local function SlitherEvents(event, creature, attacker, damage)
if(creature:GetHealthPct() <= 60) then
creature:SendUnitYell("Will punish you all",0)
creature:RegisterEvent(AirBurst, 1000, 0) -- 1 seconds
return
end
end
这应该让老板在他的健康= 60%或更少时说话,但它应该运行一次,当我运行老板一直在说和攻击的代码时。我怎样才能让它运行一次?