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

Help with arrows and bolts!

Can someone please tell me what value should I modify to make the arrows and bolts always stick to the targets without being destroyed?

I modified "StickyOffset" value to 1.0 but that doesn't seem to affect it anything...I think it's not related to sticking chance. Any help?

I just added <passive_effect name="ProjectileStickChance" operation="perc_set" value="1"/> at the arrows and bolts properties and it still doesn't work.

 
Last edited by a moderator:
Can someone please tell me what value should I modify to make the arrows and bolts always stick to the targets without being destroyed?
I modified "StickyOffset" value to 1.0 but that doesn't seem to affect it anything...I think it's not related to sticking chance. Any help?

I just added <passive_effect name="ProjectileStickChance" operation="perc_set" value="1"/> at the arrows and bolts properties and it still doesn't work.
Close! Use base_set instead:




Code:
<property name="IsSticky" value="true"/>
<passive_effect name="ProjectileStickChance" operation="base_set" value="1"/>



 
Back
Top