IETS - v0.5.1
    Preparing search index...

    Function GiveOrder

    BG2 barrel re-exports.

    Generated by ts-update. Do not edit manually.

    Uses named re-exports (not export *) so esbuild can statically resolve each binding without falling back to runtime __reExport helpers for externalized .d.ts modules.

    • This action is used in conjunction with the ReceivedOrder trigger, and works in a similar way to a global shout. The action passes a numeric order to the specified creature. Only one creature at a time responds to an order, and creatures to not detect their own orders.

       IF
         See([EVILCUTOFF])
         OR(3)
         Class(Myself,FIGHTER_ALL)
         Class(Myself,RANGER_ALL)
         Class(Myse lf,PALADIN_ALL)
       THEN
         RESPONSE #100
           GiveOrder([PC.0.0.THIEF_ALL],100)
       END
       
       IF
         ReceivedOrder(Myself,100)
         Class(Myself,THIEF_ALL)
       THEN
         RESPONSE #100
           RunAwayFrom([EVILCUTOFF],120)
           Hide()
       END
      

      Parameters

      Returns Action