(两种功能不同,一种是杀光敌方的 另一种还没试)
for actor in MovableMan.Actors do if actor.Team == 1 then GibThis() end end
for actor in MovableMan.Actors do actor:GibThis() end
我方加血(先选择 200是血量 可以改)
for actor in MovableMan.Actors do if actor.Team == 0 then actor.Health = 200 end end
敌方减血 (与杀死敌方所有类似)
for actor in MovableMan.Actors do if actor.Team == 1 then actor.Health = 0 end end