Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Working on my first mod  (Read 1066 times)

jetex1911

  • Bay Watcher
  • [MAXAGE:∞]
    • View Profile
Working on my first mod
« on: May 27, 2011, 08:27:28 am »

Well, i'm working on my first mod, and so far, I think i'm starting to understand how everything works. I keep getting this error, which i expected, because i am new to modding. Can anyone help me with this?
Code: [Select]
*** Error(s) found in the file "raw/objects/creature_chao.txt"
CHAO:Unrecognized Creature Caste Body Token: HUMANOID_SIMPLE_CHAO
CHAO:Body Token Recognized But Could Not Connect: 2EYES
CHAO:Body Token Recognized But Could Not Connect: 2LUNGS
CHAO:Body Token Recognized But Could Not Connect: MOUTH
CHAO:Body Token Recognized But Could Not Connect: HEART
CHAO:Body Token Recognized But Could Not Connect: GUTS
CHAO:Body Token Recognized But Could Not Connect: ORGANS
CHAO:Body Token Recognized But Could Not Connect: THROAT
CHAO:Body Token Recognized But Could Not Connect: NECK
CHAO:Body Token Recognized But Could Not Connect: SPINE
CHAO:Body Token Recognized But Could Not Connect: BRAIN
CHAO:Body Token Recognized But Could Not Connect: SKULL
CHAO:Body Token Recognized But Could Not Connect: EYELIDS
CHAO:Body Token Recognized But Could Not Connect: RIBCAGE
Logged
Put into this light, Dr. Robotnik and Armok could easily have been roommates.


Known as That_Kobold on BYOND

Knight Otu

  • Bay Watcher
  • ☺4[
    • View Profile
Re: Working on my first mod
« Reply #1 on: May 27, 2011, 09:07:47 am »

It looks like you want to use a body that doesn't exist. HUMANOID_SIMPLE_CHAO is not a vanilla body, so if you didn't add it, that won't work. What do you want the body to be like?

Ed: These guys?
« Last Edit: May 27, 2011, 09:14:51 am by Knight Otu »
Logged
Direforged Original
Random Raw Scripts - Randomly generated Beasts , Vermin, Hags, Vampires, and Civilizations
Castle Otu

jetex1911

  • Bay Watcher
  • [MAXAGE:∞]
    • View Profile
Re: Working on my first mod
« Reply #2 on: May 27, 2011, 11:22:48 am »

Actually, i created the HUMANOID_SIMPLE_CHAO. here it is:
Spoiler (click to show/hide)
I expect that i did something wrong, so i could use some help with this. Also, yes, THAT kind of Chao.

[EDIT] I changed it so that it was the normal Humanoid_joints. It works, and now i just have to get the normal things, like color variations... Can you help me with that? Also, how an i going to put in their Floating Orb?
« Last Edit: May 27, 2011, 11:30:33 am by jetex1911 »
Logged
Put into this light, Dr. Robotnik and Armok could easily have been roommates.


Known as That_Kobold on BYOND

DgN13

  • Escaped Lunatic
    • View Profile
Re: Working on my first mod
« Reply #3 on: May 27, 2011, 11:29:13 am »

Actually, you created HUMANOID_JOINTS_CHAO.

I'm not a modder, but I'm pretty sure DF needs exact names.
Logged

Ieb

  • Bay Watcher
  • A Breakdancing Ogre
    • View Profile
Re: Working on my first mod
« Reply #4 on: May 27, 2011, 11:36:23 am »

You could make the floating orb a body part, but it wouldn't really be floating like the way I figure you intend to.
As for color variations, I assume they're with normal skin? Not scales or anything like that?

Here you go.

Code: [Select]
[SET_TL_GROUP:BY_CATEGORY:ALL:SKIN]
[TL_COLOR_MODIFIER:COLORS AND NUMBERS HERE]
[TLCM_NOUN:skin:SINGULAR]

With that after all your other raw tags the chao will have whatever skin colors you put in for COLORS AND NUMBERS HERE. Works along the lines of SILVER:1:GREEN:2 and so on. You can find this from pretty much any of the vanilla raw files and you can find the part to define their eyecolor too.

Pretty sure you could use it to define ANY bodypart with a specific color too.
Logged

jetex1911

  • Bay Watcher
  • [MAXAGE:∞]
    • View Profile
Re: Working on my first mod
« Reply #5 on: May 28, 2011, 06:35:03 am »

How do i add Fur to them?
Logged
Put into this light, Dr. Robotnik and Armok could easily have been roommates.


Known as That_Kobold on BYOND