I'm trying to access the active battle with some scripts, but i can't find where is the group of current enemy combatants stored.
I know i can access, for example, to the actual turn number


actualTurn = ORK.Battle.Turn;


Is it possible doing something similar with enemies combatants group?
  • edited September 2022
    You can get them via the combatant handler: ORK.Game.Combatants

    E.g. this will get you all enemies of the player that are in battle:
    List<Combatant> enemies = ORK.Game.Combatants.Get(ORK.Game.ActiveGroup.Leader, false, null, Consider.Yes, Consider.Ignore, Consider.Yes, null);
    Post edited by gamingislove on
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • Okay, thanks!
Sign In or Register to comment.