Gernash

lyrConf.xml

Oct 31st, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.15 KB | None | 0 0
  1. <?xml version="1.0" ?>
  2. <!--
  3. tag - RegExp filter of tags (google regexp for more syntax information)
  4. more accurate filter - better performance
  5. simple examples:
  6. regexp which tags it will find
  7. "\|Key\|" |Key|
  8. "\(Food\)|\[Prewar|Raw\]" (Food), [Prewar] and [Raw]
  9. "[\(\[]Chem|Device[\)\]\}]" [Chem], (Chem), (Device), [Device]
  10. "[\(\[\|]Grenade|Signal|Mine[\|\]\)]" Grenade, Signal and Mine within any of these brackets ({[]})
  11.  
  12. favorite - add heart icon
  13.  
  14. taggedForSearch - add magnifier icon
  15.  
  16. isLegendary - add star icon
  17.  
  18. filterFlag - point where make subCategory
  19. filterMask - point where search items
  20. 4294967295 - all
  21. 1 - favorites
  22. 2 - weapons
  23. 4 - apparel
  24. 8 - aid
  25. 512 - all misc
  26. 1024 - junk
  27. 2048 - modifications
  28. 4096 - ammo
  29. 8192 - all holotapes
  30. 128 - all notes and magazines
  31.  
  32. equipState - add square icon
  33.  
  34. text - name of subcategory (you can use tag here for make icon, but tag shouldn't match tag filter
  35. otherwise it will put itself out and disappear from pipboy)
  36.  
  37. canFavorite - point if subcategory can be favorite (always set false or just ignore this tag)
  38.  
  39. subFilter - any unique Number (a power of 2 starting from 65536)
  40. 65536, 131072, 262144, 524288 etc. (the same subfilters will place in one subcategory)
  41.  
  42. 65536 Flag:512 Mask:512 {Key} Keyring <"hhh|\|(Key|Passcard|Password)\|">
  43. 131072 Flag:512 Mask:512 {Trash} Trash <"\[Trash\]">
  44. 262144 Flag:512 Mask:512 {Holotape} Information <"rrr|\[(Holotape|News|Note|Log|Schematic|Comic) \]|\ {Schematic\}|(Log$)">
  45. 524288 Flag:512 Mask:512 {Devices} Devices <"aaa|[\(\[\{](Beacon|Device|MOD|Dog|Temp|Tool|Misc|Save|Settings)[\)\]]|Config|Toggle|Settings">
  46. 1048576 Flag:8 Mask:520 {Aid} Healing <"ppp|[\[\(](Aid|Blood)[\]\)]|X-111 Compound">
  47. 2097152 Flag:8 Mask:520 {Chem} Chems <"vvv|\[(Chem|Smoke|Skill Mag)\]|Mysterious Serum">
  48. 4194304 Flag:8 Mask:520 {Nuka} Drinks <"eee|[\[\(](Drink|Liquor|Nuka|Poison)[\]\)]">
  49. 8388608 Flag:8 Mask:520 {Food} Food <"ccc|[\[\(](Entree|Food|Prewar|Corpse)[\]\)]">
  50. 16777216 Flag:2 Mask:2 (Explosives) Explosives <"[\(\[\{](Bomb|Grenade|Mine|Nuke|Nuka|Rock|Signal|Thrown)[\)\]\}]">
  51. 33554432 Flag:512 Mask:4294967295 {Power Armor} Power Armor <"\[PA .*\]">
  52. 67108864 Flag:8 Mask:520 {Raw} Ingredients <"zzz|[\[\(](Egg|Herb|Ingredient|Meat|Shroom|Raw)[\]\)]">
  53. 134217728 Flag:2048 Mask:520 {Armor} Armor <"[\[\|](ArmR|ArmL|Chest|LegL|LegR|Helmet)[\]\|]">
  54. 268435456 Flag:8 Mask:4294967295 {Quest} Quest &amp; Valuables <"ttt|[\[\(] (Collectible|DRGN|Perk: .*|Quest|Uniq|Unique|Currency|Valuable) [\)\]]|^ (Cobalt|Gold|Hydrocloric|Gallium|Tungsten|Letter|NONE|Terminal)">
  55. 536870912 Flag:512 Mask:2560 {Devices} Devices <"hhh|[\(\[\{\|] (Beacon|Device|Lockpick|MOD|Temp|Tool|Misc|Save|Settings|Camping|Book) [\|\}\]\)] |Config|Toggle|Settings">
  56. 1073741824 Flag:512 Mask:2560 {Component} Components <[\(\[](Bottle|Baby Bottle|Flask|Coffee|Component|Compost|Nuka) [\)\]]">
  57. 2147483648 Flag:2048 Mask:2560 {Software} Software <"jjj|[\[\(](Game|Hack|Software)[\)\]]">
  58. -->
  59. <!--
  60. Radrose Notes:
  61.  
  62. The "xxx|" at the beginning of subCategory entries is a magical incantation that sorts categories in the Pip-Boy interface.
  63. The content of the tag somehow affects the display order, so adding something that doesn't affect the operation, affects the order.
  64. Changing the search tag re-orders the categories, so find a new magic incantation by trial-and-error...
  65. No idea what the pattern might be.
  66.  
  67. -->
  68. <subCategories>
  69. <!-- Misc Keyring --> <subCategory tag="hhh|\|(Key|Passcard|Password)\|">
  70. <favorite type="boolean">false</favorite>
  71. <taggedForSearch type="boolean">false</taggedForSearch>
  72. <isLegendary type="boolean">false</isLegendary>
  73. <filterFlag type="int">512</filterFlag>
  74. <equipState type="int">0</equipState>
  75. <text>{Key} Keyring</text>
  76. <canFavorite type="boolean">false</canFavorite>
  77. <filterMask type="int">512</filterMask>
  78. <subFilter type="int">65536</subFilter>
  79. </subCategory>
  80. <!-- Junk Trash (Misc) --> <subCategory tag="\[Trash\]">
  81. <favorite type="boolean">false</favorite>
  82. <taggedForSearch type="boolean">false</taggedForSearch>
  83. <isLegendary type="boolean">false</isLegendary>
  84. <filterFlag type="int">512</filterFlag>
  85. <equipState type="int">0</equipState>
  86. <text>{Trash} Trash</text>
  87. <canFavorite type="boolean">false</canFavorite>
  88. <filterMask type="int">512</filterMask>
  89. <subFilter type="int">131072</subFilter>
  90. </subCategory>
  91. <!-- Misc Information --> <subCategory tag="rrr|\[(Holotape|News|Note|Log|Schematic|Comic)\]|\{Schematic\}|(Log$)">
  92. <favorite type="boolean">false</favorite>
  93. <taggedForSearch type="boolean">false</taggedForSearch>
  94. <isLegendary type="boolean">false</isLegendary>
  95. <count type="int">0</count>
  96. <filterFlag type="int">512</filterFlag>
  97. <equipState type="int">0</equipState>
  98. <text>{Holotape} Information</text>
  99. <canFavorite type="boolean">false</canFavorite>
  100. <filterMask type="int">512</filterMask>
  101. <subFilter type="int">262144</subFilter>
  102. </subCategory>
  103. <!-- Aid Devices --> <subCategory tag="aaa|[\(\[\{](Beacon|Device|MOD|Dog|Temp|Tool|Misc|Save|Settings)[\)\]]|Config|Toggle|Settings">
  104. <favorite type="boolean">false</favorite>
  105. <taggedForSearch type="boolean">false</taggedForSearch>
  106. <isLegendary type="boolean">false</isLegendary>
  107. <filterFlag type="int">8</filterFlag>
  108. <equipState type="int">0</equipState>
  109. <text>{Devices} Devices</text>
  110. <canFavorite type="boolean">true</canFavorite>
  111. <filterMask type="int">8</filterMask>
  112. <subFilter type="int">524288</subFilter>
  113. </subCategory>
  114. <!-- Aid Healing --> <subCategory tag="ppp|[\[\(](Aid|Blood)[\]\)]|X-111 Compound">
  115. <favorite type="boolean">false</favorite>
  116. <taggedForSearch type="boolean">false</taggedForSearch>
  117. <isLegendary type="boolean">false</isLegendary>
  118. <filterFlag type="int">8</filterFlag>
  119. <equipState type="int">0</equipState>
  120. <text>{Aid} Healing</text>
  121. <canFavorite type="boolean">true</canFavorite>
  122. <filterMask type="int">8</filterMask>
  123. <subFilter type="int">1048576</subFilter>
  124. </subCategory>
  125. <!-- Aid Chems --> <subCategory tag="vvv|\[(Chem|Smoke|Skill Mag)\]|Mysterious Serum">
  126. <favorite type="boolean">false</favorite>
  127. <taggedForSearch type="boolean">false</taggedForSearch>
  128. <isLegendary type="boolean">false</isLegendary>
  129. <filterFlag type="int">8</filterFlag>
  130. <equipState type="int">0</equipState>
  131. <text>{Chem} Chems</text>
  132. <canFavorite type="boolean">true</canFavorite>
  133. <filterMask type="int">8</filterMask>
  134. <subFilter type="int">2097152</subFilter>
  135. </subCategory>
  136. <!-- Aid Drinks --> <subCategory tag="eee|[\[\(](Drink|Liquor|Nuka|Poison)[\]\)]">
  137. <favorite type="boolean">false</favorite>
  138. <taggedForSearch type="boolean">false</taggedForSearch>
  139. <isLegendary type="boolean">false</isLegendary>
  140. <filterFlag type="int">8</filterFlag>
  141. <equipState type="int">0</equipState>
  142. <text>{Nuka} Drinks</text>
  143. <canFavorite type="boolean">true</canFavorite>
  144. <filterMask type="int">8</filterMask>
  145. <subFilter type="int">4194304</subFilter>
  146. </subCategory>
  147. <!-- Aid Food --> <subCategory tag="ccc|[\[\(](Entree|Food|Prewar|Corpse)[\]\)]">
  148. <favorite type="boolean">false</favorite>
  149. <taggedForSearch type="boolean">false</taggedForSearch>
  150. <isLegendary type="boolean">false</isLegendary>
  151. <filterFlag type="int">8</filterFlag>
  152. <equipState type="int">0</equipState>
  153. <text>{Food} Food</text>
  154. <canFavorite type="boolean">true</canFavorite>
  155. <filterMask type="int">8</filterMask>
  156. <subFilter type="int">8388608</subFilter>
  157. </subCategory>
  158. <!-- Weapons --> <subCategory tag="[\(\[\{](Bomb|Grenade|Mine|Nuke|Nuka|Rock|Signal|Thrown)[\)\]\}]">
  159. <favorite type="boolean">false</favorite>
  160. <taggedForSearch type="boolean">false</taggedForSearch>
  161. <isLegendary type="boolean">false</isLegendary>
  162. <filterFlag type="int">2</filterFlag>
  163. <equipState type="int">0</equipState>
  164. <text>(Explosives) Explosives</text>
  165. <canFavorite type="boolean">true</canFavorite>
  166. <filterMask type="int">2</filterMask>
  167. <subFilter type="int">16777216</subFilter>
  168. </subCategory>
  169. <!-- Apparel Power Armor --><subCategory tag="\[PA .*\]">
  170. <favorite type="boolean">false</favorite>
  171. <taggedForSearch type="boolean">false</taggedForSearch>
  172. <isLegendary type="boolean">false</isLegendary>
  173. <filterFlag type="int">4</filterFlag>
  174. <equipState type="int">0</equipState>
  175. <text>{Power Armor} Power Armor</text>
  176. <canFavorite type="boolean">false</canFavorite>
  177. <filterMask type="int">4</filterMask>
  178. <subFilter type="int">33554432</subFilter>
  179. </subCategory>
  180. <!-- Aid Ingredient --> <subCategory tag="zzz|[\[\(](Egg|Herb|Ingredient|Meat|Shroom|Raw)[\]\)]">
  181. <favorite type="boolean">false</favorite>
  182. <taggedForSearch type="boolean">false</taggedForSearch>
  183. <isLegendary type="boolean">false</isLegendary>
  184. <filterFlag type="int">8</filterFlag>
  185. <equipState type="int">0</equipState>
  186. <text>{Raw} Ingredients</text>
  187. <canFavorite type="boolean">true</canFavorite>
  188. <filterMask type="int">8</filterMask>
  189. <subFilter type="int">67108864</subFilter>
  190. </subCategory>
  191. <!-- Apparel Armor --> <subCategory tag="[\[\|](ArmR|ArmL|Chest|LegL|LegR|Helmet)[\]\|]">
  192. <favorite type="boolean">false</favorite>
  193. <taggedForSearch type="boolean">false</taggedForSearch>
  194. <isLegendary type="boolean">false</isLegendary>
  195. <filterFlag type="int">4</filterFlag>
  196. <equipState type="int">0</equipState>
  197. <text>{Armor} Armor</text>
  198. <canFavorite type="boolean">false</canFavorite>
  199. <filterMask type="int">4</filterMask>
  200. <subFilter type="int">134217728</subFilter>
  201. </subCategory>
  202. <!-- Misc Valuables --> <subCategory tag="ttt|[\[\(](Collectible|DRGN|Perk: .*|Quest|Uniq|Unique|Currency|Valuable)[\)\]]|^(Cobalt|Gold|Hydrocloric|Gallium|Tungsten|Letter|NONE|Terminal)">
  203. <favorite type="boolean">false</favorite>
  204. <taggedForSearch type="boolean">false</taggedForSearch>
  205. <isLegendary type="boolean">false</isLegendary>
  206. <filterFlag type="int">512</filterFlag>
  207. <equipState type="int">0</equipState>
  208. <text>{Quest} Quest &amp; Valuables</text>
  209. <canFavorite type="boolean">false</canFavorite>
  210. <filterMask type="int">512</filterMask>
  211. <subFilter type="int">268435456</subFilter>
  212. </subCategory>
  213. <!-- Misc Devices --><subCategory tag="hhh|[\(\[\{\|](Beacon|Device|Lockpick|MOD|Temp|Tool|Misc|Save|Settings|Camping|Book)[\|\}\]\)]|Config|Toggle|Settings">
  214. <favorite type="boolean">false</favorite>
  215. <taggedForSearch type="boolean">false</taggedForSearch>
  216. <isLegendary type="boolean">false</isLegendary>
  217. <count type="int">0</count>
  218. <filterFlag type="int">512</filterFlag>
  219. <equipState type="int">0</equipState>
  220. <text>{Devices} Devices</text>
  221. <canFavorite type="boolean">true</canFavorite>
  222. <filterMask type="int">512</filterMask>
  223. <subFilter type="int">536870912</subFilter>
  224. </subCategory>
  225. <!-- Junk Components --> <subCategory tag="[\(\[](Bottle|Baby Bottle|Flask|Coffee|Component|Compost|Nuka)[\)\]]">
  226. <favorite type="boolean">false</favorite>
  227. <taggedForSearch type="boolean">true</taggedForSearch>
  228. <isLegendary type="boolean">false</isLegendary>
  229. <filterFlag type="int">1024</filterFlag>
  230. <equipState type="int">0</equipState>
  231. <text>{Component} Components</text>
  232. <canFavorite type="boolean">false</canFavorite>
  233. <filterMask type="int">1024</filterMask>
  234. <subFilter type="int">1073741824</subFilter>
  235. </subCategory>
  236. <!-- Misc Software --> <subCategory tag="jjj|[\[\(](Game|Hack|Software)[\)\]]">
  237. <favorite type="boolean">false</favorite>
  238. <taggedForSearch type="boolean">false</taggedForSearch>
  239. <isLegendary type="boolean">false</isLegendary>
  240. <count type="int">0</count>
  241. <filterFlag type="int">512</filterFlag>
  242. <equipState type="int">0</equipState>
  243. <text>{Software} Software</text>
  244. <canFavorite type="boolean">true</canFavorite>
  245. <filterMask type="int">512</filterMask>
  246. <subFilter type="int">2147483648</subFilter>
  247. </subCategory>
  248. </subCategories>
Advertisement
Add Comment
Please, Sign In to add comment