Cobbled together some frames where the Minotaur rakes at the ground with his hoof, so naturally I wanted to use those before the Minotaur charges forward:
http://www.teamhellspawn.com/minotaur.gif (excuse the rogue cyan pixels)
and then show the charging frame itself while it charges:
http://www.teamhellspawn.com/MINSA1.png
The charge sequence in Heretic is just a single frame with "A_MinotaurCharge", so I figured that adding my "raking" frames before that would work and that he wouldn't start SKULLFLY until "A_MinotaurCharge" was called. But I'm definitely wrong about that, because the Minotaur moves forward while the raking frames are playing and it looks like the Minotaur is trying to push himself forwards on an invisible skateboard.

Code: Select all
Charge:
MINR A 3
MINR B 3
MINR C 3
MINR D 3
MINR E 3
MINS A 3 A_MinotaurCharge
Loop
//EDIT: Took the lazy option and moved the frames into the "Missile:" state. Also added a second variety of charge attack to make it a little more unpredictable.