Ok guys I am working on a singleplayer mod and need to add new animations, I copied bludgeonweapon for adding swords, Now in the Swing function there is a line that says:
Activity nHitActivity = ACT_VM_HITCENTER;
I am going to add the new anim like so:
Activity nHitActivity = ACT_VM_SLASH1A_HIT;
What I need to know since the new swords has 4 attack anims, can I just put:
Activity nHitActivity = ACT_VM_SLASH1A_HIT : ACT_VM_SLASH1B_HIT : ACT_VM_SLASH1C_HIT : ACT_VM_SLASH1D-HIT;
Will this work, or do I need to figure out something else?
Thanks in advance.