Titan Network

More Titan Projects => Icon => Topic started by: Noyjitat on November 16, 2014, 08:32:38 PM

Title: Seer Death mov animation?
Post by: Noyjitat on November 16, 2014, 08:32:38 PM
I'm not 100% positive but I think I recall finding the mov command for this once and now going through the list... nothing seems to jump out at me...
Title: Re: Seer Death mov animation?
Post by: Felderburg on December 04, 2014, 04:40:36 PM
Using ctrl+f to find "death" at http://paragonwiki.com/wiki/Demo_Editing/List_of_MOVs, there's a few that seem possible:

AIR_DEATH
EMOTE_FEM_FLOAT_TO_DEATH (and others near that)

The problem is that the first I suspect is the generic death in the air mov, and the second has a male counterpart, which wouldn't be needed for seers. I'm at work so I can't test these. Seers have a mov called SEER_CONTACT_LEVITATE_CYCLE and searching for "Levitate" finds a few with levitiate and "post" in the same, but I suspect that's coming back to the ground, not dying after levitating.

Edit: I forgot I also found CAM_AIR_DEATH_CYCLE and others near that, but that seems unlikely as well.
Title: Re: Seer Death mov animation?
Post by: Codewalker on December 04, 2014, 05:18:26 PM
Let's see... Seer_Scanner_01 uses the V_Seers_Bound ent type.  V_Seers_Bound uses the Seers_seq.txt sequencer with a sequencer type of "Seer". Seer_Augur_01 ends up using the same sequencer, but with a type of "Unbound", probably because the bosses can move their arms.

Dumping sequencers.bin and finding FileName=SEERS_SEQ.TXT, and looking for moves that require the DEATH bit...

Aha, the MOV for it is DEFAULT_DEATH. It plays either fem/seer_death.anim, fem/corrupt_seer_death.anim, or fem/seer_unbound_death.anim, depending on the entity subtype, as well as playing the FX feet/seerdeath1.fx.

The catch is that DEFAULT_DEATH will only play the animation you want on an actual Seer NPC. The player rig has different animations for that MOV, and I don't see those animations used anywhere else except in the SEERS_SEQ sequencer.
Title: Re: Seer Death mov animation?
Post by: Noyjitat on December 05, 2014, 03:23:00 AM
Do you really walk through code or Run through it?  Your knowledge never ceases to amaze me haha.

I've noted some odd results with "body type" at the top of a costume file.

CostumeFilePrefix fem
HeadScales  0,  0,  0
BrowScales  0,  0,  0
CheekScales  0,  0,  0
ChinScales  0,  0,  0
CraniumScales  0,  0,  0
JawScales  0,  0,  0
NoseScales  0,  0,  0
SkinColor  255,  178,  155
NumParts 28
BodyType 1

Changing the number and loading the costume caused my character to howl like a warwolf. Do know the extent of what that entry field actually does? Yeah I'm basically wondering if it changes the player model to an npc so that what you're talking about might work. As a player and not just on clicked seer npcs.

I do thank you for your time, response and for icon :)