enums.h
under the last attribute in itemAttrTypes (ITEM_ATTRIBUTE_DOORID = 1 << 22, if you haven't edited it, and use the number after << + 1 for reflection)
under ORIGIN_RANGED in CombatOrigin
item.h
in:
take the hex value (default is 0x7FFE13) and use bitwise or ( | ) with (1 << 23) and replace the hex with the new value you get (you can...
[TFS 1.2] Reflection attribute
under the last attribute in itemAttrTypes (ITEM_ATTRIBUTE_DOORID = 1 << 22, if you haven't edited it, and use the number after << + 1 for reflection)
C++:
ITEM_ATTRIBUTE_REFLECTION = 1 << 23,
C++:
ORIGIN_REFLECT,
in:
C++:
inline static bool isIntAttrType
[TFS 1.2] Reflection attribute