Advertisement
HasterPaster

Link to external XML-files in DayZ

Jul 11th, 2021
2,318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
  2. <economycore>
  3.     <classes>
  4. <!--
  5. These are rootclasses to be used by economy.
  6. Do not forget to add attribute act="character", if root class represents character (player, infected, animal)
  7. Do not forget to add attribute act="car", if root class represents moveable vehicles
  8. -->
  9.         <rootclass name="DefaultWeapon" /> <!-- weapons -->
  10.         <rootclass name="DefaultMagazine" /> <!-- magazines -->
  11.         <rootclass name="Inventory_Base" /> <!-- inventory items -->
  12.         <rootclass name="HouseNoDestruct" reportMemoryLOD="no" /> <!-- houses, wrecks -->
  13.         <rootclass name="SurvivorBase" act="character" reportMemoryLOD="no" /> <!-- player characters -->
  14.         <rootclass name="DZ_LightAI" act="character" reportMemoryLOD="no" /> <!-- infected, animals -->
  15.         <rootclass name="CarScript" act="car" reportMemoryLOD="no" /> <!-- cars (sedan, hatchback, transitBus, V3S, ...) -->
  16.     </classes>
  17.  
  18.     <!-- Add external XML files here. -->
  19.     <ce folder="ExternalXML">
  20.         <file name="types_[Remastered] Arma Weapon Pack.xml" type="types" />
  21.         <file name="types_Code Lock.xml" type="types" />
  22.         <file name="types_CPBWeapons.xml" type="types" />
  23.         <file name="types_GraveCross.xml" type="types" />
  24.     </ce>
  25.  
  26.  
  27.     <defaults>
  28.         <default name="dyn_radius" value="30" />
  29.         <default name="dyn_smin" value="0" />
  30.         <default name="dyn_smax" value="0" />
  31.         <default name="dyn_dmin" value="1" />
  32.         <default name="dyn_dmax" value="5" />
  33.         <default name="log_ce_loop" value="false"/>
  34.         <default name="log_ce_dynamicevent" value="false"/>
  35.         <default name="log_ce_vehicle" value="false"/>
  36.         <default name="log_ce_lootspawn" value="false"/>
  37.         <default name="log_ce_lootcleanup" value="false"/>
  38.         <default name="log_ce_lootrespawn" value="false"/>
  39.         <default name="log_ce_statistics" value="false"/>
  40.         <default name="log_ce_zombie" value="false"/>
  41.         <default name="log_storageinfo" value="false"/>
  42.         <default name="log_hivewarning" value="true"/>
  43.         <default name="log_missionfilewarning" value="true"/>
  44.         <default name="save_events_startup" value="true"/>
  45.         <default name="save_types_startup" value="true"/>
  46.     </defaults>
  47. </economycore>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement