WoW:XML/SCRIPTINHERITTYPE

< XML

XML UI ← XML types < SCRIPTINHERITTYPE

SCRIPTINHERITTYPE is an WoW UI XML enumeration used for specifying event script execution order in XML for a Script in Scripts. See also SCRIPTINTRINSICORDERTYPE.

ValuesEdit

  • prepend - run this script before any other previously inherited scripts
  • append - run this script after any other previously inherited scripts
  • none - (default) no inheritance. override any inherited scripts, other scripts will not be run

XsdEdit

<xs:simpleType name="SCRIPTINHERITTYPE">
  <xs:restriction base="xs:NMTOKEN">
    <xs:enumeration value="prepend"/>
    <xs:enumeration value="append"/>
    <xs:enumeration value="none"/>
  </xs:restriction>
</xs:simpleType>

DetailsEdit

See AlsoEdit