edited January 2021 in ORK Scripting
I have a simple hunt quest to kill 3 enemies. If I mark them as dead via script using Combatant.Status.Death() it doesn't seem to count it towards the quest. Do I need to set something else to get it to associate the enemy death with the quest kill count task?

These enemies are spawned by an ORK spawner. And the same combatant entry is used for both the spawner and the kill requirements.
Post edited by H3L0 on
  • Killed combatants are only counted towards quests if they are enemies of the player (faction) and where at some point attacked by someone from the player's faction.

    You can set that via scripting:
    combatant.Battle.SetAttackedBy(ORK.Game.ActiveGroup.Leader, true);
    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!
Sign In or Register to comment.