Recent content by chawang

  1. C

    Conditional Abort and interrupt problem

    Oh thanks! I used a conditional evaluator with reevaluation checked and it works now.
  2. C

    Conditional Abort and interrupt problem

    But now I have encountered a different problem where I have a shared bool comparison not synced somehow, as the screenshot shows, the "PerformingAttack" is true already, but the seek task is still running which means it did not update the comparison result? By the way the repeater on the...
  3. C

    Conditional Abort and interrupt problem

    Hello Justin, thanks for replying. The issues it that if we are on task B already, somehow(probably because of the conditional aborts), Task A's condition is still being checked, and as soon A becomes true, task B will be interrupted and switched to task A. I added interrupt to stop checking...
  4. C

    Conditional Abort and interrupt problem

    Hello, I'm trying to make my Ai does 3 different types of attack moves A,B and C, and if none of those meet the requirements, we will run D which will seek the player. But I'm trying to stop checking other requirements if we are currently checking or performing one move(For example if we are...
Top