Hello everyone !
Here is my problem : in all types of events, I have vehicles that spawn as items (stuck in wagons for example).
- I checked the types.xml X times and for all vehicles : Nominal 0 / min-max 0.
- I deleted my types.xml, re-injected the original one, re-modified the original one without touching the vehicles.
So that you can view the types.xml, an exemple with Hummer :
<type name="Offroad_02">
<nominal>0</nominal>
<lifetime>3</lifetime>
<restock>0</restock>
<min>0</min>
<quantmin>-1</quantmin>
<quantmax>-1</quantmax>
<cost>100</cost>
<flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
</type>
And here an example of events.xml :
<event name="VehicleOffroad02">
<nominal>15</nominal>
<min>15</min>
<max>15</max>
<lifetime>300</lifetime>
<restock>0</restock>
<saferadius>20</saferadius>
<distanceradius>50</distanceradius>
<cleanupradius>200</cleanupradius>
<flags deletable="0" init_random="0" remove_damaged="1"/>
<position>fixed</position>
<limit>mixed</limit>
<active>1</active>
<children>
<child lootmax="0" lootmin="0" max="30" min="30" type="Offroad_02"/>
</children>
</event>
If you have a solution I'm interested, thank you very much !