Swap poses for victims with other variant

Questions about configurations, etc

Moderator: Moderator

ZeltixGamer
Posts: 5
Joined: Mon Jan 04, 2021 11:51 am

Swap poses for victims with other variant

Post by ZeltixGamer »

I know a certain victim got different poses for different characters, like minotaur has it's own unique doggystyle poses compare to other rapist, anyway i can see it on other rapist, an example.

Also i'm avoiding who exactly is the character to avoid disrespecting the creator if it is seen as appauling.
Ellye
Posts: 10
Joined: Sat Dec 19, 2020 9:33 am

Re: Swap poses for victims with other variant

Post by Ellye »

The way I tend to do it, in the Aggressor CNS, is like, for example:

Code: Select all

[State 7320, CheckForAnim2]
type = ChangeAnim
trigger1 = AnimExist(180500)
value = 180500

[State 7320, CheckForAnim3]
type = ChangeAnim
trigger1 = !AnimExist(180500)
trigger1 = AnimExist(12250)
value = 12250

[State 7320, CheckForAnim4]
type = ChangeAnim
trigger1 = !AnimExist(180500)
trigger1 = !AnimExist(12250)
trigger1 = AnimExist(180100)
value = 180100

[State 7320, CheckForAnim5]
type = ChangeAnim
trigger1 = !AnimExist(180500)
trigger1 = !AnimExist(12250)
trigger1 = !AnimExist(180100)
trigger1 = AnimExist(6621)
value = 6621

[State 7320, CheckForAnimElse]
type = ChangeAnim
trigger1 = !AnimExist(180500)
trigger1 = !AnimExist(12250)
trigger1 = !AnimExist(180100)
trigger1 = !AnimExist(6621)
value = 5020
This way I have a cascading priority of victim animations.

In this example, my priority is the animation 180500, if it exists. Otherwise, it tries 12250. If it also doesn't exist, it will try 180100... etc, etc.

You'd probably want to edit the CNS in your aggressor to put the victim animation you want as a first choice above the current choice.

-----------------------------

Another way, of course, is to edit the victim itself - in that case you'd just need to edit the AIR file and swap animation IDs.
Profile picture image by @artofsachi
Post Reply