SphereCommunity

Full Version: cut corpse player problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.

I have a problem cutting the players' bodies, the legs, arms and torso appear, but the head doesn't ... Is it encoded? Or can I access those resources in a file?

Thank you !
When you cut corpses, it will create all resource items that is set on CHARDEF

So you must check if RESOURCES line is set correctly on these CHARDEFs like c_man, c_woman, c_elf_male, c_elf_female, c_gargoyle_male, c_gargoyle_female

Code:
[CHARDEF 0190]
DEFNAME=c_man
...
RESOURCES=i_flesh_head_2, i_flesh_torso, i_flesh_right_arm, i_flesh_left_arm, i_flesh_left_leg, i_flesh_right_leg
(06-21-2020 07:30 AM)Coruja Wrote: [ -> ]When you cut corpses, it will create all resource items that is set on CHARDEF

So you must check if RESOURCES line is set correctly on these CHARDEFs like c_man, c_woman, c_elf_male, c_elf_female, c_gargoyle_male, c_gargoyle_female

Code:
[CHARDEF 0190]
DEFNAME=c_man
...
RESOURCES=i_flesh_head_2, i_flesh_torso, i_flesh_right_arm, i_flesh_left_arm, i_flesh_left_leg, i_flesh_right_leg

thanks!!! I don't know how I didn't see it XD
Reference URL's