Guest User

Untitled

a guest
Feb 15th, 2024
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.05 KB | None | 0 0
  1. <!-- Core -->
  2. <?xml version="1.0" encoding="utf-8" ?>
  3. <Patch>
  4.     <Operation Class="PatchOperationReplace"> // Replace since you want to replace
  5.         <xpath>/Defs/GeneDef[defName="FurryTail"]/iconPath</xpath> // look in the xml file and write the path to the node you want to modify starting from the Defs node
  6.         <value>
  7.             <li>your path</li>
  8.         </value>
  9.     </Operation>
  10. </Patch>
  11.  
  12.  
  13. <!-- Modded -->
  14. <?xml version="1.0" encoding="utf-8" ?>
  15. <Patch>
  16.     <Operation Class="PatchOperationFindMod"> // "if mod is loaded"
  17.         <mods>
  18.             <li>Monster Girl Encyclopedia Inspired</li> // mod name, not id, as according to its about.xml
  19.         </mods>
  20.         <match Class="PatchOperationSequence"> // let you declare a list of patch operations like above in order of execution
  21.             <operations>
  22.                 <li Class="PatchOperationReplace"> // like above, only the Operation tag is changed
  23.                     <xpath>/Defs/GeneDef[defName="MGEI_AlrauneFlower"]/iconPath</xpath>
  24.                     <value>
  25.                         <li>your path</li>
  26.                     </value>
  27.                 </li>
  28.             </operations>
  29.         </match>
  30.     </Operation>
  31. </Patch>
Advertisement
Add Comment
Please, Sign In to add comment