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

Screamer summoning light

Szynsz

New member
Hello,

I want to make a lamp that will increase the heat of the map, so that you can summon a screamer. I made a code, but I wanted to ask if he would work?

This is my code:

Code:
<block name="summonLight">
<property name="Class" value="PoweredLight"/>
<property name="Extends" value="porchLight01"/>
<property name="CreativeMode" value="Player"/>
<property name="DescriptionKey" value="lightPlayerGroupDesc"/>
<property name="CustomIcon" value="industrialLight02Red"/>
<property name="RuntimeSwitch" value="true"/>
<property name="Material" value="Mglass"/>
<property name="StabilitySupport" value="false"/> <!-- build restriction -->
<property name="Stacknumber" value="1"/>
[b]<property name="HeatMapStrength" value="100"/>
<property name="HeatMapTime" value="1200"/>
<property name="HeatMapFrequency" value="25"/>[/b]
<property name="Model" value="Entities/Lighting/industrial_light_02_redPrefab"/> <property name="HandleFace" value="Top"/>
<property name="TakeDelay" value="5"/>
</block>
 
Back
Top