![]() |
|
|
#1 |
|
Need a little skinning help
I'm editing a map for redeemer matches, or just a big old map for any kind of fighting really, and I put Warlords on it.
Skinned them like this... ![]() ...but when they die they look like this: ![]() How do I skin the Warlord's carcass?
__________________
|
|
|
|
|
|
|
#2 |
|
You'll have to make a custom carcass class that uses your skin and have the Warlords use the custom class as their carcass type.
|
|
|
|
|
|
|
#3 | |
|
Assume I don't know how to do that...
Quote:
![]() ...how do I do that?
__________________
|
||
|
|
|
|
|
#4 |
|
If you want to keep of your custom content in mylevel, go to the actor class browser, then go to Decorations, Carcass, WarlordCarcass. Right click on WarlordCarcass and click new. Set the package name to MyLevel and give your custom carcass a name. Right click on your custom carcass and pick default properties, then go to the display section and set the skin/multiskins fields to use your custom texture. Then find the warlord's class and make a new one in MyLevel. In the default properties of your custom warlord, go to the pawn section and change the carcasstype to the custom class you made earlier.
|
|
|
|
|
|
|
#5 |
|
It seems so simple when you say it like that.
I'll give it a shot.
__________________
|
|
|
|
|
|
|
#6 |
|
Registered User
Join Date: Jan. 19th, 2006
Posts: 591
|
For the modders reading this I have a parent carcass class that will end this problem in your mutator no matter what the mapper/creature maker ****ed up. All you need to do is include the parent carcass class and then spawn it on the monsters in your mutator like this:
Code:
if (S.CarcassType != None)
{
S.CarcassType = class'MonsterHunt2Lite.ExCreatureCarcass';
}
|
|
|
|
![]() |
| Tags |
| deathmatch, monsters, skinning, warlords |
| Thread Tools | |
| Display Modes | |
|
|