08-21-2014, 04:55 AM
First, let me say your battler works fine. He seems to be arranged properly as you can tell within these two shots. The first was an image of various poses when he's been put into one copy of Animated Battlers, while the second is where he's substituting the battler for Actor #12 (Alexa).
SpritePicA.png (Size: 195.7 KB / Downloads: 60)
SpritePicB.png (Size: 105.57 KB / Downloads: 53)
The problem within the AnimBat configuration page in Charlie's CTB, is that he configured various actor battlers to have non-standard poses and frames. Actor #9's battler (Sapphire) was set to have 12 poses and 6 frames of animation. And Actor #17 (The Kal-El summons) has only 1 pose, and 7 frames of animation. This was done by the manipulation of the MNK_POSES_ACTOR and MNK_FRAMES_ACTOR values around lines 55 on down.
That was it's purpose anyway... to let the game designer add larger than expected battlers. To set them back to normal, just do this:
That would remove 'all' extraneous poses and frames other than the normal minkoff 11x4 standard. But you may wish to look at the MNK_APOSE set further down (around lines 106 and below). These let you change the layout of your 'actor' battlers. Just see what the EPOSE set further below look like if you want that reset as well.
And I guess the pre-generated configs may be a little dated if there isn't a JUMPING_ENEMY value within.


The problem within the AnimBat configuration page in Charlie's CTB, is that he configured various actor battlers to have non-standard poses and frames. Actor #9's battler (Sapphire) was set to have 12 poses and 6 frames of animation. And Actor #17 (The Kal-El summons) has only 1 pose, and 7 frames of animation. This was done by the manipulation of the MNK_POSES_ACTOR and MNK_FRAMES_ACTOR values around lines 55 on down.
That was it's purpose anyway... to let the game designer add larger than expected battlers. To set them back to normal, just do this:
Code:
MNK_POSES_ACTOR = nil
# ID and # of poses for each actor
MNK_FRAMES_ACTOR = nil
That would remove 'all' extraneous poses and frames other than the normal minkoff 11x4 standard. But you may wish to look at the MNK_APOSE set further down (around lines 106 and below). These let you change the layout of your 'actor' battlers. Just see what the EPOSE set further below look like if you want that reset as well.
