Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: [MODDING][Help] Unable to get modded reactions to show up in workshop menus  (Read 739 times)

Krisnack

  • Bay Watcher
    • View Profile

So I've been working on a custom entity and while I've got things mostly working, I can't to get my modded reactions to show up in the workshop menus. I've looked over them repeatedly, compared them with the vanilla reactions, and yet I can't get to appear. I'm guessing that I'm missing something, but I can't think of what.

Excerpt from my new entity .txt file:
Code: [Select]
[OBJECT:ENTITY]

[ENTITY:WILD]
--redundant code omitted--
[WEAPON:ITEM_WEAPON_CLUB]
[WEAPON:ITEM_WEAPON_CLUB_2H]
--redundant code omitted--
[PERMITTED_JOB:CARPENTER]
[PERMITTED_JOB:STONECRAFTER]
--redundant code omitted--
[PERMITTED_REACTION:CARVE_WOOD_STATUE]
[PERMITTED_REACTION:MAKE_CRUDE_ANVIL]
[PERMITTED_REACTION:MAKE_STONE_CLUB]
[PERMITTED_REACTION:MAKE_STONE_2H_CLUB]
Excerpt from my new reactions .txt file:
Code: [Select]
[OBJECT:REACTION]

[REACTION:CARVE_WOOD_STATUE]
[NAME:make wood statue]
[BUILDING:CARPENTER:CUSTOM_S]
[REAGENT:log:1:WOOD:NONE:NONE:NONE]
[ANY_PLANT_MATERIAL]
[REAGENT:tool:1:NONE:NONE:NONE:NONE]
[PRESERVE_REAGENT][HAS_EDGE]
[PRODUCT:100:1:STATUE:NONE:GET_MATERIAL_FROM_REAGENT:log:NONE]
[PRODUCT_TOKEN:statue]
[SKILL:CARPENTRY]

[REACTION:MAKE_CRUDE_ANVIL]
[NAME:make crude anvil]
[BUILDING:CRAFTSMAN:CUSTOM_A]
[REAGENT:fire-proof stone:5:BOULDER:NONE:NONE:NONE]
[FIRE_BUILD_SAFE]
[WORTHLESS_STONE_ONLY]
[PRODUCT:100:1:ANVIL:NONE:GET_MATERIAL_FROM_REAGENT:fire-proof stone:NONE]
[PRODUCT_TOKEN:anvil]
[SKILL:STONECRAFT]
[CATEGORY:ADV_STONECRAFT]
[CATEGORY_NAME:Stonecrafting]
[CATEGORY_DESCRIPTION:Make advanced stone objects at a craftmans's workshop using stones.]

[REACTION:MAKE_STONE_CLUB]
[NAME:make stone club]
[BUILDING:CRAFTSMAN:NONE]
[REAGENT:non-economic stone:5:BOULDER:NONE:NONE:NONE]
[WORTHLESS_STONE_ONLY]
[REAGENT:log:1:WOOD:NONE:NONE:NONE]
[ANY_PLANT_MATERIAL]
[PRODUCT:100:1:WEAPON:ITEM_WEAPON_CLUB:GET_MATERIAL_FROM_REAGENT:non-economic stone:NONE]
[PRODUCT_TOKEN:stone club]
[SKILL:STONECRAFT]
[CATEGORY:ADV_STONECRAFT]

[REACTION:MAKE_STONE_2H_CLUB]
[NAME:make stone two-handed club]
[BUILDING:CRAFTSMAN:NONE]
[REAGENT:non-economic stone:5:BOULDER:NONE:NONE:NONE]
[WORTHLESS_STONE_ONLY]
[REAGENT:log:1:WOOD:NONE:NONE:NONE]
[ANY_PLANT_MATERIAL]
[PRODUCT:100:1:WEAPON:ITEM_WEAPON_CLUB_2H:GET_MATERIAL_FROM_REAGENT:non-economic stone:NONE]
[PRODUCT_TOKEN:stone two-handed club]
[SKILL:STONECRAFT]
[CATEGORY:ADV_STONECRAFT]
Excerpt from my new weapons .txt file:
Code: [Select]
[OBJECT:ITEM]

[ITEM_WEAPON:ITEM_WEAPON_CLUB]
[NAME:club:club]
[SIZE:700]
[SKILL:MACE]
[TWO_HANDED:37500]
[MINIMUM_SIZE:32500]
[MATERIAL_SIZE:3]
[ATTACK:BLUNT:20:200:bash:bashes:NO_SUB:2000]
[ATTACK_PREPARE_AND_RECOVER:3:3]

[ITEM_WEAPON:ITEM_WEAPON_CLUB_2H]
[NAME:two-handed club:two-handed clubs]
[SIZE:700]
[SKILL:MACE]
[TWO_HANDED:57500]
[MINIMUM_SIZE:42500]
[MATERIAL_SIZE:4]
[ATTACK:BLUNT:150:1000:bash:bashes:NO_SUB:1750]
[ATTACK_PREPARE_AND_RECOVER:3:3]

I'd really appreciate any help figuring this out.
« Last Edit: August 27, 2022, 08:18:43 pm by Krisnack »
Logged