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

Objective(s) for placing Blocks in A20

Hi, 

I have that old XML code in a quest:

<objective type="Craft" id="woodFrameBlockVariantHelper" value="6" phase="1"/>
<objective type="BlockPlace" id="woodFrameBlock" value="3" phase="2"/>
<objective type="BlockUpgrade" id="woodFrameBlock" value="3" phase="2"/>
<objective type="BlockPlace" id="woodPlate" value="1" phase="3"/>
<objective type="BlockPlace" id="woodFrameHalf" value="1" phase="3"/>




But now these blocks are not existing anymore in A20.
Question is, how I can place a shape from i.e. the `woodPlate` in my quests?

Any ideas 😇

 
Hi, 

I have that old XML code in a quest:

<objective type="Craft" id="woodFrameBlockVariantHelper" value="6" phase="1"/>
<objective type="BlockPlace" id="woodFrameBlock" value="3" phase="2"/>
<objective type="BlockUpgrade" id="woodFrameBlock" value="3" phase="2"/>
<objective type="BlockPlace" id="woodPlate" value="1" phase="3"/>
<objective type="BlockPlace" id="woodFrameHalf" value="1" phase="3"/>




But now these blocks are not existing anymore in A20.
Question is, how I can place a shape from i.e. the `woodPlate` in my quests?

Any ideas 😇


Hi dwarfmaster1974

This is the code that the Basic survival 7 mission has for the rebarframe, you can apply it to your code.
Now everything is handled differently (by shapes).
Regards

<objective type = "Craft" id = "frameShapes: VariantHelper" value = "1" phase = "2" />
<objective type = "BlockPlace" id = "frameShapes: VariantHelper" value = "1" phase = "2" />
<objective type = "BlockUpgrade" id = "frameShapes" value = "1" phase = "2" />

 
Back
Top