How to use the all_enemies_defeated and main_hero_fallen?

Users who are viewing this thread

What are the parameters for these two operations?

Seems like the header_operation.py only write the operations, don't write the parameters for them:
Code:
all_enemies_defeated      = 1003 # (all_enemies_defeated),
and
Code:
main_hero_fallen          = 1006 # (main_hero_fallen),
 
Solution
Code:
all_enemies_defeated                         = 1003  # (all_enemies_defeated, [team_id]),
                                                     # Checks if all agents from the specified team are defeated. When team_id is omitted default enemy team is checked.

main_hero_fallen doesnt look like it has a parameter, could just be trash from old code (remember the engine changed over a decade and operations with it).

you can even do this
Code:
(neg|main_hero_fallen),

(this_or_next|main_hero_fallen),
Code:
all_enemies_defeated                         = 1003  # (all_enemies_defeated, [team_id]),
                                                     # Checks if all agents from the specified team are defeated. When team_id is omitted default enemy team is checked.

main_hero_fallen doesnt look like it has a parameter, could just be trash from old code (remember the engine changed over a decade and operations with it).

you can even do this
Code:
(neg|main_hero_fallen),

(this_or_next|main_hero_fallen),
 
Upvote 0
Solution
Back
Top Bottom