• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

[Question] blocks.xml LootList property

FringeRecall

New member
Hello,

I'm wondering, does anyone know exactly what the property LootList value refers to in blocks.xml ?

loot.xml uses alphanumeric name tags and I can't seem to find the correlation here.

Thank you.

 
You mean like

blocks.xml

Code:
<block name="cntShoppingBasket">
<property name="Extends" value="shoppingBasketEmpty"/>
<property name="Model" value="LootContainers/shopping_basket" param1="main_mesh"/>
<property name="CustomIcon" value="shoppingBasketEmpty"/>
<property name="Class" value="Loot"/>
<property name="LootList" value="58"/>
</block>
loot.xml

Code:
<!-- shopping basket -->
<lootcontainer id="58" count="1,2" size="5,3" sound_open="UseActions/open_shopping_basket" sound_close="UseActions/close_shopping_basket" loot_quality_template="baseTemplate">
<item group="cupboard"/>
<item group="beverages"/>
</lootcontainer>
 
Back
Top