SphereCommunity
cut corpse player problem - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: cut corpse player problem (/Thread-cut-corpse-player-problem)



cut corpse player problem - xtronchox - 06-20-2020 01:53 AM

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 !


RE: cut corpse player problem - Coruja - 06-21-2020 07:30 AM

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



RE: cut corpse player problem - xtronchox - 06-21-2020 09:56 PM

(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