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

New SteelBar mod with undead legacy support

ocbMaurice

New member
Hi folks

This is my very first post on this forum, so hello everybody :wave:
I'd like to introduce my very first mod, based on @xyth SteelBars mod.

Btw. thanks @xyth for the unity template and utilities 👍

Current latest downloads are on GitHub:

https://github.com/OCB7D2D/ocbSteelBars/tree/v0.2.2
https://github.com/OCB7D2D/ocbSteelBars/releases/download/v0.2.2/ocbSteelBarsA19.zip
https://github.com/OCB7D2D/ocbSteelBars/releases/download/v0.2.2/ocbSteelBarsULM.zip

The main features:

- Adds 3x4 (12) new blocks (wood-, iron- and steel-bars)

- With outer edge, outer corner, center edge and center corner

- You can loot through bars/poles (as with original SteelBars mod)

- Bullets collide with bars/poles (not in original SteelBars mod)

- Models created from scratch to line up nicely with corners

- Versions available for original A19 and Undead Legacy

game-blocks.jpg
       
game-loot.jpg
       

game-shapes.jpg


I've put everything on GitHub, including blender and unity files:

https://github.com/OCB7D2D/ocbSteelBars

Please try it out and report back if you like.
Report issues and problems directly on GitHub:
https://github.com/OCB7D2D/ocbSteelBars/issues/new

All the best and good zombie hunting!

 
Last edited by a moderator:
ulmResourceRebarSteel doesn't work as upgrade item, because it's not defined in Allowed_upgrade_items for meleeToolRepairT1ClawHammer and meleeToolRepairT3Nailgun, need to append it to the list if you want it to work :)

 
Last edited by a moderator:
Thx @Subquake, that was the missing information. For those interested, was fixed by adding these lines to `items.xml`

Code:
<configs>
    <append xpath="/items/item[@name='meleeToolRepairT1ClawHammer']/property[@class='Action1']/property[@name='Allowed_upgrade_items']/@value">,ulmResourceRebarSteel</append>
    <append xpath="/items/item[@name='meleeToolRepairT3Nailgun']/property[@class='Action1']/property[@name='Allowed_upgrade_items']/@value">,ulmResourceRebarSteel</append>
</configs>
 
Last edited by a moderator:
Tested the original A19 version a bit more thoroughly today and found a few oversights.

Also was able to finally fix the repairItems for steel, since I could not set the inherited
material to zero. Seems that fancy param1="RepairItems" attribute did the trick :)

https://github.com/mgreter/ocbSteelBars7D2D/releases/download/v0.2.2/ocbSteelBarsA19.zip

https://github.com/mgreter/ocbSteelBars7D2D/releases/download/v0.2.2/ocbSteelBarsULM.zip

Will probably test out this version with my buddies soon to get some more beta testing done 😁

 
Last edited by a moderator:
Back
Top