Auto-translated
I have a problem! How can I make it so that at the beginning of a new day, a battle starts between creatures (Archangels) and the hero (Arantir)? It doesn't seem to be working.
```
function bar (hero)
if hero=="Arantir"
then StartCombat(Arantir,nil,5,14,1,14,1,14,1,14,1,14,1,nil);
end;
end;
Trigger(NEW_DAY_TRIGGER,"bar");
```
I've tried it without the `if...then` statement, but it still doesn't work. Can you help me?