Apprentice
|
|
Posts: 4
|
|
|
Last seen: Sept 5, 2019 17:09:26 GMT
|
|
Post by fra700 on Sept 1, 2019 9:51:25 GMT
Hi everyone,
I tried to create a new character yesterday and it seems to work good. Today, I'd like to make a new Goku. I have just downloaded a mod inherent to Goku, I extracted x2m contents with 7zip. The I took all hair file and renamed them in this way:
HUM_008_hair.scd HUM_008_hair_scd.dyt.emb HUM_008_hair_scd.emb HUM_008_hair_scd.emb HUM_008_hair_scd.emd HUM_008_hair_scd.emm HUM_008_hair_scd.esk
Anyway, when I go to the character creation and select that hair style, the chara results bald. Have I perhaps forgot something?
|
|
Hero
|
|
Posts: 489
|
|
|
Last seen: Jun 27, 2024 14:13:26 GMT
|
|
Post by atsuraelu on Sept 2, 2019 21:11:44 GMT
The hair you downloaded has physics, the one you try to replace does not (also, the names don't match up, but w/e). You'll need to do some bcs editing to get it to work. Basically just serialize the bcs, search for the following part
<Part idx="5"> <!--Hair--> <MODEL value="8" /> <MODEL2 value="8" /> <TEXTURE value="0" /> <U_10 value="0x0" /> <U_18 value="0x0" /> <U_1C value="0x0" /> <U_20 value="0x0" /> <F_24 value="0.0" /> <F_28 value="0.0" /> <U_2C value="0x0" /> <U_30 value="0x0" /> <NAME value="HUM" /> <!--MODEL, EMM, EMB, EAN--> <FILES value="NULL, HUM_008_Hair, NULL, NULL" /> </Part> (should be in partset idx="32") and replace it with
<Part idx="5"> <!--Hair--> <MODEL value="65535" /> <MODEL2 value="65535" /> <TEXTURE value="0" /> <U_10 value="0x0" /> <U_18 value="0x0" /> <U_1C value="0x0" /> <U_20 value="0x0" /> <F_24 value="0.0" /> <F_28 value="0.0" /> <U_2C value="0x0" /> <U_30 value="0x0" /> <NAME value="HUM" /> <!--MODEL, EMM, EMB, EAN--> <FILES value="NULL, NULL, NULL, NULL" /> <PhysicsObject> <U_00 value="0xffff" /> <U_02 value="0xffff" /> <U_04 value="0x0" /> <U_18 value="0x1" /> <U_1C value="0x0" /> <U_20 value="0x0" /> <NAME value="HUM" /> <STR_28 value="HUM_008_hair_scd, NULL, HUM_008_hair_scd, NULL, b_C_Chest, HUM_008_hair" /> </PhysicsObject> </Part>
|
|
Apprentice
|
|
Posts: 4
|
|
|
Last seen: Sept 5, 2019 17:09:26 GMT
|
|
Post by fra700 on Sept 4, 2019 15:58:16 GMT
atsuraelu: It's really interesting. Thanks for your answer.
|
|