Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: My modded race won't do anything  (Read 1193 times)

ImACatNamedGloves

  • Bay Watcher
    • View Profile
My modded race won't do anything
« on: July 26, 2018, 06:59:44 am »

Hi, I'm making a race of sentient penguins called tukis. I have everything set up, but when I try to play with them in Fortress mode I encounter two problems:

1. They have [NATURAL_SKILL:FISH], so the first thing they try to do is fishing in the river, but I get spammed with "Unit cancels fishing: too injured" and I have no idea of the cause.

2. They won't do any job I command them to do, even if they have the skill. Dwarf Therapist doesn't help either.

These are the creature and entity raws, I've searched for everything. What can it be?

Spoiler (click to show/hide)

Spoiler (click to show/hide)

Logged

Liber celi

  • Bay Watcher
  • council does your hair
    • View Profile
Re: My modded race won't do anything
« Reply #1 on: July 26, 2018, 07:37:16 am »

They'll need a bodypart with GRASP to work, I think.
Logged

DG

  • Bay Watcher
  • Pull the Lever
    • View Profile
Re: My modded race won't do anything
« Reply #2 on: July 26, 2018, 07:42:42 am »

Yeah, I think that's it. Otherwise you're duplicating the classic "Wait...I have no hands!" cat bug http://dwarffortresswiki.org/index.php/40d:Cat_cancels_Store_Item_in_Stockpile:_Too_injured
Logged

ImACatNamedGloves

  • Bay Watcher
    • View Profile
Re: My modded race won't do anything
« Reply #3 on: July 26, 2018, 07:53:26 am »

Aaaah, now I understand! Flippers don't grasp, even if I put fingers. Thank you!
Logged

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: My modded race won't do anything
« Reply #4 on: July 26, 2018, 09:49:21 am »

You could use a copy of flippers with the GRASP token, if you still want the original idea.
Code: [Select]
[BODY:TUKI_FLIPPERS]
[BP:R_FLIP:right flipper:STP][CONTYPE:UPPERBODY][RIGHT][GRASP][CATEGORY:FLIPPER]
[DEFAULT_RELSIZE:200]
[BP:L_FLIP:left flipper:STP][CONTYPE:UPPERBODY][LEFT][GRASP][CATEGORY:FLIPPER]
[DEFAULT_RELSIZE:200]
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!

Hugo_The_Dwarf

  • Bay Watcher
  • Modding Mentor
    • View Profile
    • Regeneration: Forced Evolution
Re: My modded race won't do anything
« Reply #5 on: July 26, 2018, 05:39:31 pm »

Instead of making a custom body part you can just use (inside the creature) this snippet

Code: [Select]
[SET_BP_GROUP:BY_CATEGORY:FLIPPER][BP_ADD_TYPE:GRASP]
This will make just that creature's flippers able to grasp things, and not require a custom BP
Logged