Jump to content

DAR priorities and condition


xpxhavikxqx

Recommended Posts

does anybody see anything wrong with my conditions? ive been doing this all morning with other weapons and movesets and they all work fine. all but this one and i cant figure it out. i know all of these should be identical other than "hasmagiceffect", still im puzzled because its the only one not working so far



HasPerk("Stances - Dynamic Weapon Movesets SE.esp" | 0x0004251A) AND

IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008AC) OR

IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008AB) OR

IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008C2) OR

IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008AD) OR

IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x000868) OR

IsEquippedRightHasKeyword("NewArmoury.esp" | 0x000801) OR

IsEquippedRightHasKeyword("NewArmoury.esp" | 0x000809) AND

HasMagicEffect("Keytrace.esp"|0x803) AND

IsEquippedRightType(1)


Link to comment
Share on other sites

Can you add an additional set of parenthesis around all the possible weapons? I think the logic might be getting confused with how the last set of ANDs are in the same grouping as the ORs.

Something like:

HasPerk("Stances - Dynamic Weapon Movesets SE.esp" | 0x0004251A) AND
( IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008AC) OR
  IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008AB) OR
  IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008C2) OR
  IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x0008AD) OR
  IsEquippedRightHasKeyword("[Caenarvon] Yue Qingshu.esp" | 0x000868) OR
  IsEquippedRightHasKeyword("NewArmoury.esp" | 0x000801) OR
  IsEquippedRightHasKeyword("NewArmoury.esp" | 0x000809) ) AND
HasMagicEffect("Keytrace.esp"|0x803) AND
IsEquippedRightType(1)

But other than a very brief look into DAR, I have not used it. So... I could be wrong.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...